diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst index c144853e2b3..f72c9c4928f 100644 --- a/src/containerapp/HISTORY.rst +++ b/src/containerapp/HISTORY.rst @@ -4,6 +4,13 @@ Release History =============== upcoming ++++++ +* '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 1.2.0b5 ++++++ @@ -21,6 +28,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..7e3da3bf078 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,161 @@ def list(cls, cmd, resource_group_name, container_app_name): return policy_list +class ContainerAppFunctionsPreviewClient(): + api_version = "2025-10-02-preview" + + @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 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 ._utils import execute_function_admin_command + + 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 = execute_function_admin_command( + cmd=cmd, + resource_group_name=resource_group_name, + name=name, + 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}'.") + 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 ._utils import execute_function_admin_command + + 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 = execute_function_admin_command( + cmd=cmd, + resource_group_name=resource_group_name, + name=name, + 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}'.") + 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 ._utils import execute_function_admin_command + + 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 = execute_function_admin_command( + cmd=cmd, + resource_group_name=resource_group_name, + name=name, + 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}'.") + 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 c1cc6111c42..b3e0a806bc6 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 \\ @@ -2308,11 +2436,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 a1715bfc255..d99c17a86fa 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) @@ -501,6 +501,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', @@ -520,3 +522,43 @@ def load_arguments(self, _): with self.argument_context('containerapp revision set-mode') as c: c.argument('mode', arg_type=get_enum_type(['single', 'multiple', 'labels']), help="The active revisions mode for the container app.") c.argument('target_label', help="The label to apply to new revisions. Required for revision mode 'labels'.", is_preview=True) + + 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..0ee41dbe4a8 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,59 @@ 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 + + +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/_validators.py b/src/containerapp/azext_containerapp/_validators.py index 66944ce79c0..23d54230fe3 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,96 @@ 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.") diff --git a/src/containerapp/azext_containerapp/commands.py b/src/containerapp/azext_containerapp/commands.py index d37c2ffd001..8b79243cbce 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 @@ -287,3 +292,16 @@ def load_command_table(self, args): with self.command_group('containerapp revision label') as g: g.custom_command('add', 'add_revision_label') g.custom_command('remove', 'remove_revision_label') + + 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/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..4ac187936b4 --- /dev/null +++ b/src/containerapp/azext_containerapp/containerapp_functions_decorator.py @@ -0,0 +1,319 @@ +# 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 + +import json +from knack.log import get_logger + +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__) + + +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""" + + APP_INSIGHTS_API_VERSION = "2018-04-20" + + 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_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() + + # 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)" + ) + + result = self._execute_app_insights_query(app_id, invocation_summary_query, "getLast30DaySummary") + + return process_app_insights_response(result) + 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_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 " + ) + + result = self._execute_app_insights_query(app_id, invocation_traces_query, "getInvocationTraces") + + return process_app_insights_response(result) + except Exception as e: + handle_raw_exception(e) diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 37a72d28592..eeaf1bbeb88 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 ( @@ -115,7 +127,8 @@ SessionCustomContainerPreviewClient, DotNetComponentPreviewClient, MaintenanceConfigPreviewClient, - LabelHistoryPreviewClient + LabelHistoryPreviewClient, + ContainerAppFunctionsPreviewClient ) from ._dev_service_utils import DevServiceUtils from ._models import ( @@ -3600,8 +3613,27 @@ 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): +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, + '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, @@ -3802,3 +3834,138 @@ def remove_revision_label(cmd, resource_group_name, name, label, no_wait=False): return r['properties']['configuration']['ingress']['traffic'] 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/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..7320b074087 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_invocations_summary_traces.yaml @@ -0,0 +1,7673 @@ +interactions: +- request: + body: '{"location": "eastus2", "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: + - '173' + Content-Type: + - application/json + ParameterSetName: + - -a --location -g --application-type + 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: PUT + 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 + \ \"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 + \ \"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 + \ \"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 + \ \"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: + - '1545' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:59:26 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/southindia/01544367-081a-47e8-9e82-8ac2dcc09296 + 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' + 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.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/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 + \ \"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 + \ \"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 + \ \"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 + \ \"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: + - '1545' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:59:47 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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 952414CCBC954AE7B0BADC0CEEB6C093 Ref B: PNQ231110906060 Ref C: 2025-11-12T08:59:47Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:59: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0605D250414B4A47AED5E190FA800D2C Ref B: PNQ231110906060 Ref C: 2025-11-12T08:59:49Z' + 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.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 + 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}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1732' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:59: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D828E329DA8A4207BD7749620116B18C Ref B: PNQ231110908052 Ref C: 2025-11-12T08:59:50Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 85EEBA4A4C1F42019F42ABD71B47CD0B Ref B: PNQ231110906060 Ref C: 2025-11-12T09:01:31Z' + 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://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_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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '1732' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F936F84C027A4E14978A7DDCF6655050 Ref B: PNQ231110907042 Ref C: 2025-11-12T09:01:32Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D9D037A57D684307A271A6FFFAB6FE6C Ref B: PNQ231110908031 Ref C: 2025-11-12T09:01:33Z' + status: + code: 200 + message: OK +- request: + 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": + 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: + - '960' + Content-Type: + - application/json + 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: 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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 + cache-control: + - no-cache + content-length: + - '1914' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01:35 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/eastus2/ff03e86d-59f9-446a-9108-c4e1a87142d9 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: E25F8A1AB3AF4688ADB3F8516D83C96F Ref B: PNQ231110906062 Ref C: 2025-11-12T09:01:34Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 09:01: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/southindia/eb5fa3ca-b985-4fe4-93b9-49780b397c8f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B7F10197A7E94D9BB45EC0A2F8734CE6 Ref B: PNQ231110909062 Ref C: 2025-11-12T09:01:35Z' + 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://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/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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01: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-operation-identifier: + - 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: 1B295018DA66455B973C3D295105BD5F Ref B: PNQ231110909042 Ref C: 2025-11-12T09:01:38Z' + 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://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/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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01: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/westindia/d320dbee-bd0a-468d-83dd-3cdbbd3a5383 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16498' + x-msedge-ref: + - 'Ref A: C10530F8AD39410998CDEF0ACFABC3E7 Ref B: PNQ231110908029 Ref C: 2025-11-12T09:01:41Z' + 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://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/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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01: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/23ce7a5a-e924-4913-9cb2-88c34b65a105 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D6B7D7291212485DAA46361675C7A956 Ref B: PNQ231110907025 Ref C: 2025-11-12T09:01: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 + 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/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/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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01: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/centralindia/a109f4d8-5814-4b1e-ad3f-6c318606cf89 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DC21C097370549E6BD9DB2FF58C876F9 Ref B: PNQ231110908042 Ref C: 2025-11-12T09:01:46Z' + 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://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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '2583' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01: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-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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 09EA03B3E1984D78A1BEBE351F38597A Ref B: PNQ231110906034 Ref C: 2025-11-12T09:01:49Z' + 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.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 + 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}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1732' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B1276FED72AB4D0198CB49878624A70D Ref B: PNQ231110909040 Ref C: 2025-11-12T09:01:50Z' + 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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5C927C9A535A4927BADF619B06383EE1 Ref B: PNQ231110908025 Ref C: 2025-11-12T09:01:51Z' + status: + code: 200 + message: OK +- request: + 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": + 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=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"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 + cache-control: + - no-cache + content-length: + - '2242' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:01:56 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/southindia/b51a5e68-60ff-4b63-a791-2ee5e9483dbf + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: 490501A36EA5488FA40BFA5B29B84547 Ref B: PNQ231110907029 Ref C: 2025-11-12T09:01:52Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 09:01: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/centralindia/860cfb68-962c-4e8e-9d7f-234014dd10d3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5D131B0B43CE4716A005391B41CCE48C Ref B: PNQ231110909054 Ref C: 2025-11-12T09:01:56Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 09:02: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/eastus2/e3c51743-71bf-4af8-a442-1a7e548831cb + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 566F6BB719D840C18DD400E1E8C25ABE Ref B: PNQ231110906025 Ref C: 2025-11-12T09:02: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 09:02: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/eastus2/abcd33bb-377a-4eca-8917-a93fce38d9dd + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C0651EEFBA48460D84B4B0478C8F7596 Ref B: PNQ231110906062 Ref C: 2025-11-12T09:02: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 09:02: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/southindia/9a7574e9-9bd7-4135-81be-820c7cc552b7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2D032BFBB55344F6ADFD5FBCF1765419 Ref B: PNQ231110908031 Ref C: 2025-11-12T09:02: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02: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/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' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 37D1DE3699EA4BDF85498E82893E3F26 Ref B: PNQ231110909025 Ref C: 2025-11-12T09:02:10Z' + 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/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]."}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1421' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02: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/eastus2/1a36f94c-f31e-4622-b35c-a73014036b4d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D3F91CD32B5A4D7395010D06C3007C3B Ref B: PNQ231110909052 Ref C: 2025-11-12T09:02:12Z' + 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/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"}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1334' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02: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/westindia/23096420-61a5-4b19-b6ef-fc11a7e2da47 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B1BFE304F2824DB08E5F4397EAD28AC6 Ref B: PNQ231110906052 Ref C: 2025-11-12T09:02:23Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1297091863384B27B1E9227D7DB65E95 Ref B: PNQ231110906054 Ref C: 2025-11-12T09:02:25Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2825' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02: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/eastus2/7ab20cd2-b147-4aa0-b100-11f541b028eb + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - '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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C964F05C64C6415988D0F75545BFA744 Ref B: PNQ231110906031 Ref C: 2025-11-12T09:02:27Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BCD62F5C5F06481BA2A750FC84DC767D Ref B: PNQ231110906023 Ref C: 2025-11-12T09:02:27Z' + 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.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02:28 GMT + request-context: + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + 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.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02:30 GMT + request-context: + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + 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.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02:31 GMT + request-context: + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + 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.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02:32 GMT + request-context: + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + 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.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02:33 GMT + request-context: + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + 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.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02:33 GMT + request-context: + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + 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.jollybush-95ea47da.eastus2.azurecontainerapps.io/api/HttpExample + response: + body: + string: HTTP trigger function processed a request. + headers: + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:02:34 GMT + request-context: + - appId=cid-v1:08b5c44d-d8bc-47b7-8427-987921b829d6 + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6AECC871579F48EDB087E84911B392F0 Ref B: PNQ231110908060 Ref C: 2025-11-12T09:03:36Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 91865F228AC0454CBA60073664A3A77A Ref B: PNQ231110907029 Ref C: 2025-11-12T09:03:36Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9EC562E2BC0D41F989C19B1C071EDF7F Ref B: PNQ231110906034 Ref C: 2025-11-12T09:03: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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1351' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-operation-identifier: + - 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: 22E6F1EA88464BBCBA278428F6210478 Ref B: PNQ231110907052 Ref C: 2025-11-12T09:03:37Z' + 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--qp749le'' | 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.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 + 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: + - Wed, 12 Nov 2025 09:03:45 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + 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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DBC7FCCAB9754151B341ACC6BF200388 Ref B: PNQ231110909040 Ref C: 2025-11-12T09:03:46Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D2E79BF7FBA04FD5BEF961D37F20EEE9 Ref B: PNQ231110909036 Ref C: 2025-11-12T09:03:47Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9E3AC3DE277E4CB38D6B75442EA8EB2D Ref B: PNQ231110907029 Ref C: 2025-11-12T09:03:48Z' + 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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1351' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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/eastus2/8281c177-b4e2-4d87-bc88-76da9405fdba + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5F7C988C13074E72AB9508E3B63526C4 Ref B: PNQ231110909023 Ref C: 2025-11-12T09:03:48Z' + 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--qp749le'' | 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.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 + 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: + - Wed, 12 Nov 2025 09:03:52 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + via: + - 1.1 draft-oms-f75f4b59c-gss22 + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 411D74EE0483459CAE25A8AB62AF9DB5 Ref B: PNQ231110906052 Ref C: 2025-11-12T09:03:52Z' + 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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2583' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - '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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B56D44D91BDF4A7E8106083576B0308D Ref B: PNQ231110909025 Ref C: 2025-11-12T09:03:54Z' + 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.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 + 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: + - Wed, 12 Nov 2025 09:03: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-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 6E97DC74D3204C799E179AAE6FAB96B9 Ref B: PNQ231110907042 Ref C: 2025-11-12T09:03:55Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9E863C4611E84B0EAD776350B68D8DCB Ref B: PNQ231110908040 Ref C: 2025-11-12T09:03:56Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BDCE3D27B42044109AE1A7D640F0EA1B Ref B: PNQ231110907062 Ref C: 2025-11-12T09:03:56Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 223C984C238D45FBAB4979A4B84316D4 Ref B: PNQ231110909042 Ref C: 2025-11-12T09:03:57Z' + 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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1351' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:03: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/eastus2/b04121ef-17a9-46b1-bb35-234a8c3f274a + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1868EF6BC7B74223A7FA9644E200D7B4 Ref B: PNQ231110906062 Ref C: 2025-11-12T09:03:58Z' + 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--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 + ", "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.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 + 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: + - Wed, 12 Nov 2025 09:04:00 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + 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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:04: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 86861743A55045F38301DC54A4E8E3BA Ref B: PNQ231110907062 Ref C: 2025-11-12T09:04:00Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:04: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6C5464FCD5304427829EB601D479B013 Ref B: PNQ231110907034 Ref C: 2025-11-12T09:04:01Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2906' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:04: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9D495E73C44B45C8B9E9F1E92B81D246 Ref B: PNQ231110906029 Ref C: 2025-11-12T09:04:02Z' + 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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1351' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:04: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/eastus2/75dc028c-10a5-4271-bd1f-4c1baddb78a9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0CBFC78DB23742699F160B2D8D02B4D8 Ref B: PNQ231110907034 Ref C: 2025-11-12T09:04:02Z' + 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--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 + ", "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.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 + 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: + - Wed, 12 Nov 2025 09:04:05 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + via: + - 1.1 draft-oms-f75f4b59c-sq4w6 + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:04: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6A7FC6F3420542D5BC75CE2DC3E1857B Ref B: PNQ231110907034 Ref C: 2025-11-12T09:04:05Z' + 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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2583' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:04: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 37D35F0D292A489983AC1E73B8E650C7 Ref B: PNQ231110907029 Ref C: 2025-11-12T09:04:06Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 09:04: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A4162B09A85440BE931594CADE52B0F4 Ref B: PNQ231110909042 Ref C: 2025-11-12T09:04:07Z' + 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.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 + 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: + - Wed, 12 Nov 2025 09:04: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: + - gateway + x-msedge-ref: + - 'Ref A: 34C852A04BCA4FDEB5BC3A89405D41CA Ref B: PNQ231110908036 Ref C: 2025-11-12T09:04:08Z' + 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..bedfeec189c --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_keys.yaml @@ -0,0 +1,7604 @@ +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.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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/checkNameAvailability?api-version=2025-06-01 + response: + body: + string: '{"nameAvailable":true}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json + date: + - Wed, 12 Nov 2025 07:41:24 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/eastus2/076f473b-dce6-4ac0-9422-7c41e98742b5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - '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": "eastus2", + "properties": {"encryption": {"services": {"blob": {}}, "keySource": "Microsoft.Storage"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + Content-Length: + - '169' + Content-Type: + - application/json + ParameterSetName: + - -n -g --location --sku + 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: PUT + 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: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:41:32 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 + 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/southindia/aba18c83-6a41-4421-b5d8-3147171d3663 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: C69AC8D355EE43CC915B607F045494F0 Ref B: PNQ231110906042 Ref C: 2025-11-12T07:41:25Z' + 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.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 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:41:32 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 + 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/westindia/444998ac-2a7b-4879-bb8c-931ddfee59ba + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 736D13D05A3041298757D6E18E61F7E9 Ref B: PNQ231110909054 Ref C: 2025-11-12T07:41:33Z' + 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.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 + 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"}}' + headers: + cache-control: + - no-cache + content-length: + - '1514' + content-type: + - application/json + date: + - Wed, 12 Nov 2025 07:41:50 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/eastus2/1069bed6-8a5a-4bef-b963-e9908a47f335 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 921A622660364861BEE22F201AB3689A Ref B: PNQ231110906052 Ref C: 2025-11-12T07:41:50Z' + 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.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://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"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Wed, 12 Nov 2025 07:42: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-operation-identifier: + - 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-msedge-ref: + - 'Ref A: A1CBEF20790B4B228C954D6CB3520775 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:42:11Z' + 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.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/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"}}' + headers: + cache-control: + - no-cache + content-length: + - '1514' + content-type: + - application/json + date: + - Wed, 12 Nov 2025 07:42: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B9F47ED3C80145E69DA2B2580AF70334 Ref B: PNQ231110907052 Ref C: 2025-11-12T07:42:12Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:42: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5830C12EEE3C437B9F7C9CB56B58D40E Ref B: PNQ231110908031 Ref C: 2025-11-12T07:42:14Z' + 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.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 + 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}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1732' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:42: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: EE0EF94C86D94D11B921AA25D8981BF8 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:42:14Z' + 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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:43:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8979F0EA1DE94E6D9BCBB9F35AE62C6E Ref B: PNQ231110909029 Ref C: 2025-11-12T07:43:56Z' + 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.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 + 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}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1732' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:43: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 521788EEF98B4A96A99FDE9BC56DC469 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:43: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 --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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:43:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F5E489A98DF44CB683B74CCD17EEF741 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:43:58Z' + status: + code: 200 + message: OK +- request: + 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": + 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: + - '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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 + cache-control: + - no-cache + content-length: + - '2363' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-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 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: 5004A9E44F3E4048B935063A69376537 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:43:58Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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:44: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/westindia/950a928b-fcad-41e2-9d01-a0a4ca592032 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 28C85E1619B34316B35655EE21CB83FE Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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:44: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/eastus2/18070646-02f2-4ae8-a7bf-fc44de5a676c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E19EEBDE857746178AA84B14BE690810 Ref B: PNQ231110906054 Ref C: 2025-11-12T07:44:06Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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:44: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/westindia/def93e66-a2d2-41aa-90ba-1710835f0f4f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D2ED6B90F8014C8BA99B7E9C97DF76B8 Ref B: PNQ231110907054 Ref C: 2025-11-12T07:44: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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:44: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-operation-identifier: + - 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: B91B2C9F459348C7BE81FBEF4A50C6EE Ref B: PNQ231110907062 Ref C: 2025-11-12T07:44: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/centralindia/f0aec46d-a694-4a89-bf98-7a978475f33b + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F700726B096F4C689DB9FB259B069F7A Ref B: PNQ231110906025 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 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + 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 + 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/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' + 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":[{"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '1455' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/6e57e92e-c045-4766-a1d5-4a645ed1a1b8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BBD2BC67799F4834BF28CD3E04A755E5 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:44:29Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44:30 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: 27E01F16F253414E9D9A739B58B0C61E Ref B: PNQ231110907054 Ref C: 2025-11-12T07:44: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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2825' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/930aee59-382f-4d0f-ab6a-172aabf5e283 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D4C025EFEAE5472E900CCCC6CF92CE8F Ref B: PNQ231110908036 Ref C: 2025-11-12T07:44:31Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A286BAD92C6B45C4AC14D0F860FBD25A Ref B: PNQ231110906052 Ref C: 2025-11-12T07:44:32Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8CB7EEE3649148EAB5E750ABE5CA6703 Ref B: PNQ231110906060 Ref C: 2025-11-12T07:44: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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/589b5a0a-6d6b-45a4-a8cd-701de39e5a0e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2F27BABB866A436480F7649CC6D37411 Ref B: PNQ231110906054 Ref C: 2025-11-12T07:44: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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/e23eb357-6657-4ba1-bca2-84cc11549229 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6F81A73724E9467CB071FA41BCD81296 Ref B: PNQ231110908052 Ref C: 2025-11-12T07:44:34Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/b3614e9c-07d7-48a3-b908-31e1d14843a8 + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:44:37 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9D5F90141948403B99EE146197449ACC Ref B: PNQ231110906031 Ref C: 2025-11-12T07:44:39Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F8BAEC5F593D4D1982B73C7DEA503999 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:44:39Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/c82232b2-8c01-4ef4-bcd1-dcc1db7a69c1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: EF15E9C54E7B42A59BB5DECC0A63B12A Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:39Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/6c576173-a4ef-4436-9d1a-a9eb557dfe5d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 00AA4A68C09A4BA99BCE1DF181BFCF78 Ref B: PNQ231110907040 Ref C: 2025-11-12T07:44: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/c5ab4b7b-c7af-4057-a7e3-9ffa74bbbbe8 + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:44:44 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C169A73468E841EF94593C3A2CB7DBFC Ref B: PNQ231110907060 Ref C: 2025-11-12T07:44:45Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DD6E34A55DC5444FB1EE7C202102763F Ref B: PNQ231110908042 Ref C: 2025-11-12T07:44:45Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/90d4d583-4e8b-4571-80d6-9e8858c2dd43 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A1E8D49C2D134E33AFB1E31DDE4317F4 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:44:46Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/831323ec-a069-46dc-abee-54989de1125f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 202CC2CF568B4BFC8A9FC82FCE06D29B Ref B: PNQ231110909023 Ref C: 2025-11-12T07:44: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 + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type + User-Agent: + - 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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/0d1c302a-403f-4cc9-a00c-05cbc683c718 + 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' + 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.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 + response: + body: + string: '{"$id":"1","output":"{\n\"value\": {\n\"keys\": []\n}\n}"}' + headers: + content-length: + - '58' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44:51 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 042339EEF2E3467B92CE7784F9954896 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:44:52Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3D4FD537FE364F3FB641CC79C09D0A9C Ref B: PNQ231110908034 Ref C: 2025-11-12T07:44:52Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/e6188825-3886-4fbc-b6a3-f05df9ba8f80 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: EFF778D0A9EF4AA4853AA602B27E31A7 Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:52Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/cadd4f06-f876-46c4-b5be-ecd49fb3fa4d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9320509EE4A8437483238C2CAB17101D Ref B: PNQ231110908023 Ref C: 2025-11-12T07:44:53Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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/eastus2/3285a28c-0a97-40c0-bb3a-4f4682537fa1 + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:44:58 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:44: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: CD769347F0C74FC7A7B5467CDC3286DD Ref B: PNQ231110909025 Ref C: 2025-11-12T07:44:59Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DE132A8B65EC4186B65842756934F5A1 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:00Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/380648f6-89b2-44a6-bc57-27ba72a60bc7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5E7FE5A29CC64B87B5B0E117755CA996 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:45:00Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/b5d96f66-df08-48b7-ad5e-d79cf5d2755c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DB2BC59C6C644668873C542F7025B86B Ref B: PNQ231110906060 Ref C: 2025-11-12T07:45: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 + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - 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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/9d833ac3-3e9d-4613-9163-2484a1ae5ed7 + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:45:04 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3D5AE9A004B5486E9EA5C043DB258F37 Ref B: PNQ231110906031 Ref C: 2025-11-12T07:45: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 + 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?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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 733EDB82CAB347DFB0DD184C813750FA Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45: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 + 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/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--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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/b4457034-2cac-495c-8b42-e2b88fd22eec + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B24BF6D50B9A4BBD90FDD6B79F3CFE67 Ref B: PNQ231110906025 Ref C: 2025-11-12T07:45: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 + 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/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--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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/a7d1325f-673b-4f31-af1f-b51f029fbc30 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D67B33FFA94D46B28C5D6DF8B02A44CA Ref B: PNQ231110907034 Ref C: 2025-11-12T07:45: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 + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name + User-Agent: + - 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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/f5acee6d-d951-4c81-baab-6b9e1033415d + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:45: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 show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + 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?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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 44E824C3D45F4A2C9EAFEFF3F75CBD9B Ref B: PNQ231110907062 Ref C: 2025-11-12T07:45:11Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E64CA809E6CC46138C99D7CB02B41579 Ref B: PNQ231110909025 Ref C: 2025-11-12T07:45:11Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/45388dcc-283f-4c32-ac44-ba03d386b78e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6A432E5766A14C87A5F9CA013D31A825 Ref B: PNQ231110908034 Ref C: 2025-11-12T07:45:12Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/1fd3aa23-2d30-4191-bbc0-c85bdc45b64e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8C8A56D27BD14BCC8C73DDB45BA26EC7 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:45:13Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/1176f62d-0659-421d-a08b-dfce5d0f1683 + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:45:16 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: AF4BDA6688A74203B12A837B01B71345 Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:17Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2B9C754C01A746548E57B0A5896123E0 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:18Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/ad6612eb-a632-43cc-a8b1-61c8f331d1b5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B04705C77B964023A282B222B9D621A1 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45:18Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/9cb18766-b831-491a-b7ad-d1354cd87354 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D61FE5ABCF194A7981DE2D9BC570F98A Ref B: PNQ231110906062 Ref C: 2025-11-12T07:45:19Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/711ac6d0-ce35-4553-b856-a5a7171bfaeb + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:45:23 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3C63F167651242F2A85792157E05D412 Ref B: PNQ231110909052 Ref C: 2025-11-12T07:45: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 --function-name + 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?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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 484C108CA842480792DFDFA5D45DA9DB Ref B: PNQ231110907031 Ref C: 2025-11-12T07:45: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 --function-name + 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/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--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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/7760d970-3262-468a-ac68-e9666ffa050f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1F7757AA7FFF422ABD8DFC8C7E81A905 Ref B: PNQ231110909040 Ref C: 2025-11-12T07:45: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 --function-name + 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/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--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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/d7c30a65-05a1-4a00-8e98-19bf57ed21c4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: AB2097BFD21342528BAE11811A193BCA Ref B: PNQ231110906054 Ref C: 2025-11-12T07:45: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 + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - 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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/511695ea-c82f-47e7-b34a-2df61af4026e + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:45:28 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 77257950D1E74809A8C63B07AAF386E4 Ref B: PNQ231110907036 Ref C: 2025-11-12T07:45:30Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45:30 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: AA2F473391C74DE4BE6266596E8E5A97 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:45:30Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45:30 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/931658ad-9182-4dd4-b63c-c4e7a49f8b6f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4E81B4C0586C4FFCB579AFD48C840BD5 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:45:31Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-operation-identifier: + - 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: C1275D41E0964E51824A4AD8C80A0359 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:45:31Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-operation-identifier: + - 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-msedge-ref: + - 'Ref A: A062FFE6E72E46CB94E355B09B9076BE Ref B: PNQ231110909025 Ref C: 2025-11-12T07:45: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.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 + 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: + - Wed, 12 Nov 2025 07:45:36 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 92BB6808F01F4B908C462D4A0981F4CD Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:38Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3569776B6F4C499C8C144C70F2DE38E1 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:45:38Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-operation-identifier: + - 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: 337C326230FD4B669520127407BC23BF Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:38Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-operation-identifier: + - 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: 393E6453024249738DB90665D6868E6B Ref B: PNQ231110908031 Ref C: 2025-11-12T07:45:39Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/9d5e7199-5aa7-474b-8745-67256f1e1d91 + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:45:43 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B860274BB47244D894CD9EE2D1681997 Ref B: PNQ231110907029 Ref C: 2025-11-12T07:45:43Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 24285A213D0B4799A895AE78C853AF60 Ref B: PNQ231110907036 Ref C: 2025-11-12T07:45:44Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/00fcd1c1-9f80-42cb-b54d-00c83a96c6e4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1A56CD5690C54887AA24F12C5DD808E5 Ref B: PNQ231110906029 Ref C: 2025-11-12T07:45:44Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/b8367441-e256-4130-8f1a-674b3d04a79c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4E8C2DE4610548039EF8DC04FCE4EDB3 Ref B: PNQ231110909025 Ref C: 2025-11-12T07:45:44Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/eca059be-9a99-4223-a5d6-b25714f603a4 + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:45:48 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1AD6EBD6374A4EAE911406155A937505 Ref B: PNQ231110909031 Ref C: 2025-11-12T07:45:50Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 44B81B5BD00B455F8F719F42F0447931 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:45:50Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-operation-identifier: + - 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: D566CF08C9BE450DBE6B4D6DD621251A Ref B: PNQ231110907052 Ref C: 2025-11-12T07:45:50Z' + 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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/09422835-cf67-4109-a86d-ef820cb8f869 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2E47BFB876C94CC9BC04268D0C6F1605 Ref B: PNQ231110906040 Ref C: 2025-11-12T07:45:51Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/aa411088-39ea-4e19-91ad-13944b3d24f8 + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:45:54 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 799CFD8F25D4418FAA55F0B13378F512 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:45: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 + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + 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?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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8416D220B8AA4D599850C27FA1FDD586 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:45: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 + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + 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/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--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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/d4fa6576-3db5-4f94-88a7-8de646be03a1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A96D0AFFF02C4D999DAE700D33E9F36E Ref B: PNQ231110907029 Ref C: 2025-11-12T07:45: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 + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + 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/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--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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/c49d4886-adc1-4e61-a726-2afb59ad0a1d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 11437663B7D64F6FB5326A232D06595D Ref B: PNQ231110906042 Ref C: 2025-11-12T07:45: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 + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --key-value --function-name + User-Agent: + - 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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:45: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/eastus2/470f8911-2cdf-4a75-b23f-7cdff7a37132 + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:46: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 show + Connection: + - keep-alive + ParameterSetName: + - -g -n --key-type --key-name --function-name + 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?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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 924392E18795427084880A4389767613 Ref B: PNQ231110909042 Ref C: 2025-11-12T07:46: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E193993393474832941C48B4D3BB3C1E Ref B: PNQ231110908023 Ref C: 2025-11-12T07:46: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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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/eastus2/4557c737-d56a-4901-9fd1-d8031e439e01 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 7EABE415CC39483FA15C22E58F49C777 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:46: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.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 + 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"}]}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2813' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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/eastus2/420643b8-0ea9-4d1f-83f8-f18b482919d8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BA2BF1362630473FA34AFEE589E9FBBD Ref B: PNQ231110909040 Ref C: 2025-11-12T07:46: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 + Content-Length: + - '0' + ParameterSetName: + - -g -n --key-type --key-name --function-name + User-Agent: + - 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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '865' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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/eastus2/9ba0e694-7338-4827-a44f-e307f31f2f6f + 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' + 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.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 + 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: + - Wed, 12 Nov 2025 07:46:06 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.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 + 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: + - Wed, 12 Nov 2025 07:46: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-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 0F5BD0AB84AC4836AFDE4D23D79E17EE Ref B: PNQ231110907052 Ref C: 2025-11-12T07:46:07Z' + 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.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 + 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: + - Wed, 12 Nov 2025 07:46: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: + - gateway + x-msedge-ref: + - 'Ref A: 61788E9302C5448E8B9F5702EE875441 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:46:08Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 7B6C7FE4A2544D91A6832546F2E31883 Ref B: PNQ231110909029 Ref C: 2025-11-12T07:46:09Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BC0A86AFD077472CB3A1B767932601CE Ref B: PNQ231110907036 Ref C: 2025-11-12T07:46:10Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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/eastus2/dd73a0b9-c430-4b92-a0d7-7b5376f9fdb4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1AB104EF872B41A58AC2545507294693 Ref B: PNQ231110909031 Ref C: 2025-11-12T07:46:11Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 535408145040496B8D7633E4AA970AE0 Ref B: PNQ231110908023 Ref C: 2025-11-12T07:46:12Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3027' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 311BA92F92ED4C3C81F622F5888940B0 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:46:12Z' + 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.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 + 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"}]}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2228' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:46: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/eastus2/0f8cfa74-ad52-419e-807e-25149c3b9b72 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A746B1D3CF3C4C10AA3D383AFDBD6CB5 Ref B: PNQ231110908062 Ref C: 2025-11-12T07:46:12Z' + 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..feab041b6a8 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_basic.yaml @@ -0,0 +1,2036 @@ +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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 648CB5E49F40406B8C75EDBD4766E722 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:48:40Z' + 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.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 + 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}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1795' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: EA4CA947970344CDBCB6843CB2F5E614 Ref B: PNQ231110907034 Ref C: 2025-11-12T07:48:40Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:48: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0B6DC3560CB7408A95FCB2206EAA5EBE Ref B: PNQ231110906034 Ref C: 2025-11-12T07:48:42Z' + 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/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_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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '1795' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:48: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 252C34EA31DF4192A84E41A2427CA5E5 Ref B: PNQ231110907023 Ref C: 2025-11-12T07:48: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 + 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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:48: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5CE46521F1A4434D82BB95EA5E35DA19 Ref B: PNQ231110906052 Ref C: 2025-11-12T07:48:42Z' + status: + code: 200 + message: OK +- request: + 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": + 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: + - '979' + Content-Type: + - application/json + 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: 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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 + cache-control: + - no-cache + content-length: + - '3047' + 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 + 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/eastus2/97946c61-0c01-467e-b2c1-0fbe3a80ba32 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: 3173E9F465EC4136811016AA007248CA Ref B: PNQ231110906040 Ref C: 2025-11-12T07:48:43Z' + 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.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://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: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/eastus2/7be4a11b-84e0-4cba-bfd1-c7e141af7b80 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2CE51E4E8D4D41089BBA971EFF928339 Ref B: PNQ231110906025 Ref C: 2025-11-12T07:48:46Z' + 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: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/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 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D73A3A4B09D9453DA8BD54AEAB0D8583 Ref B: PNQ231110907042 Ref C: 2025-11-12T07:48: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/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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:48: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/eastus2/d6e14c18-5826-4336-8b0d-4267a339347f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: ADF8E99BDC714DF49644736CD9E6F6D4 Ref B: PNQ231110907029 Ref C: 2025-11-12T07:48: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 + 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/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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:48: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A6EF075DAC1A4ACF84493D110DF9BFCA Ref B: PNQ231110906060 Ref C: 2025-11-12T07:48:57Z' + 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/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"}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '962' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:49: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/eastus2/876c0102-03c8-4e62-96df-b10d9f6f2a00 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F9662FCE88D04DFEB4B100F666DC85FE Ref B: PNQ231110907036 Ref C: 2025-11-12T07:49:29Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:50: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BCC9BBD354B74A1283915B1AFB1B1D49 Ref B: PNQ231110909023 Ref C: 2025-11-12T07:50:01Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:50: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6217402758144E868AD636C5BAD4BBAE Ref B: PNQ231110908034 Ref C: 2025-11-12T07:50: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 + 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/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--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: + - '528' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:50: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-operation-identifier: + - 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: 1393642CC902436C98A312D0D6682486 Ref B: PNQ231110909062 Ref C: 2025-11-12T07:50:02Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:50: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F1EC8BD077FD4BA98549D5DA9D3B7DF8 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:50:03Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3722' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:50: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 395466CB376F40C2B7B7BD5261DB3377 Ref B: PNQ231110909036 Ref C: 2025-11-12T07:50:04Z' + 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.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 + 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}}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '516' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 07:50: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/eastus2/688d1908-d6ba-4d00-9600-818714dadf39 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 55FE8EEF172649428D7B4555890F134C Ref B: PNQ231110906060 Ref C: 2025-11-12T07:50:04Z' + 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..f2fc1f11532 --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_error_scenarios.yaml @@ -0,0 +1,3577 @@ +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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:55: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 41C3EA7F31014C43A3B2A0294C596E19 Ref B: PNQ231110908036 Ref C: 2025-11-12T08:55:07Z' + 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.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 + 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}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1795' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 7B0548C01413437BB162C391079809B2 Ref B: PNQ231110909036 Ref C: 2025-11-12T08:55:07Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:55:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 271A79F39FA94E3D981BC9C141300C57 Ref B: PNQ231110908025 Ref C: 2025-11-12T08:55:09Z' + 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://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_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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '1795' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:55: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D3F91667C7464F78851215F508289D19 Ref B: PNQ231110909034 Ref C: 2025-11-12T08:55: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 + 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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:55:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DB3FD6CED10D4B7E9648B8BF02290EA2 Ref B: PNQ231110909036 Ref C: 2025-11-12T08:55:10Z' + status: + code: 200 + message: OK +- request: + 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": + 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: + - '954' + Content-Type: + - application/json + 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: 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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 + cache-control: + - no-cache + content-length: + - '3024' + 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 + 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/westindia/db3ef768-c6a8-45f2-a1ea-5760fefeb524 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: DEB266D2720045A79928FAA71872D010 Ref B: PNQ231110908031 Ref C: 2025-11-12T08:55:11Z' + 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.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://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: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/eastus2/d4141eae-b665-47d5-8209-ea51ae6d9359 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 7BC42E6420344E34912CE0803B3BE50F Ref B: PNQ231110908052 Ref C: 2025-11-12T08:55:20Z' + 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://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: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/westindia/264253b3-7c2b-47ca-8458-d5b77687472e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A1081CDF3EA44EE8996E39BC7205A84D Ref B: PNQ231110909040 Ref C: 2025-11-12T08:55: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 + 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/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: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/westindia/f8da6aff-351b-4003-9780-59c0661b6cb5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 269D52DB53E04417A56F4A260ABE140B Ref B: PNQ231110906031 Ref C: 2025-11-12T08:55: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 + 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/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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:55: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/southindia/ba766d8d-8635-488a-96ff-e1a4a89aa454 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 509C8699BB464C8A872B196B8C71FCDE Ref B: PNQ231110907054 Ref C: 2025-11-12T08:55: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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3699' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:55: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1E953B798B9C4AF9A26EDAB153659EFE Ref B: PNQ231110906023 Ref C: 2025-11-12T08:55:27Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:56:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: FEA8944EF74744148807B6659AB57F7C Ref B: PNQ231110906034 Ref C: 2025-11-12T08:56:09Z' + 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/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_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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '1795' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:56: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C14884637D3C4FB087F7D095A96D8164 Ref B: PNQ231110907062 Ref C: 2025-11-12T08:56: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 + 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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:56: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8C5248B46C09430DAC1EE6FD9B5A9A5F Ref B: PNQ231110906062 Ref C: 2025-11-12T08:56:11Z' + status: + code: 200 + message: OK +- request: + 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": + 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: + - '978' + Content-Type: + - application/json + 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: 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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 + cache-control: + - no-cache + content-length: + - '3044' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:56:15 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/southindia/03048996-628a-4170-95a6-a2f87aa062c4 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: B622B4D669C04AE3868D112295C06BFF Ref B: PNQ231110907025 Ref C: 2025-11-12T08:56:11Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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:56: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/eastus2/d3f0f870-e529-4162-8cbb-c1ef41b987df + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8DF811D83259472089D7650330CB5479 Ref B: PNQ231110906025 Ref C: 2025-11-12T08:56: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 --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/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/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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:56: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/centralindia/c0757da4-4089-4730-b6bf-8ad5fda06249 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 673E5196257A446487C0C112805DBB8F Ref B: PNQ231110909052 Ref C: 2025-11-12T08:56: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 --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/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/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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '279' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:56: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/centralindia/058c067c-c2aa-49a2-ae69-20a71acd9066 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5B22710B58604A959B35246C775CA6D0 Ref B: PNQ231110908062 Ref C: 2025-11-12T08:56: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:56: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/jioindiawest/f2f5938b-9e72-4145-87b4-a11dbadb9bc2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: CAC30822C8144EDAB60187CD6C9909D8 Ref B: PNQ231110909060 Ref C: 2025-11-12T08:56:26Z' + 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/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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:56: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 75C2BC888ACA4D59855FD3C8ABD81CEA Ref B: PNQ231110906034 Ref C: 2025-11-12T08:56:28Z' + 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/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"}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '960' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57:30 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/88f96fb5-0423-4da7-99e1-a97a2957d697 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A5295ED89930442195F1B9DD46A8A260 Ref B: PNQ231110908042 Ref C: 2025-11-12T08:57: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.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--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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '1029' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57: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-operation-identifier: + - 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: 6EAF53293A7241499E1516221EA09AD9 Ref B: PNQ231110909036 Ref C: 2025-11-12T08:57:31Z' + 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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3699' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3246EFB9F38D4175BD1D3E2E20003256 Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:33Z' + 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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3699' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 89B12CF13A99409D9A59E14AB66A3917 Ref B: PNQ231110907034 Ref C: 2025-11-12T08:57:33Z' + 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.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 + 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: + - Wed, 12 Nov 2025 08:57: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-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: D23ADDA0C1434197B712C95E1AC5D4BF Ref B: PNQ231110906042 Ref C: 2025-11-12T08:57:34Z' + 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.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 + 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: + - Wed, 12 Nov 2025 08:57: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-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: 3CA57ECFB53C4F26B9CD3C2C9861C4DA Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:35Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 8AA06FDDF40E49118926D505408CCEEC Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57: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 --revision + 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?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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 080AF4A2D43C41DBB2BC71F020B60212 Ref B: PNQ231110908036 Ref C: 2025-11-12T08:57:37Z' + 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.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/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: + - Wed, 12 Nov 2025 08:57:38 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/eastus2/31e82d28-d831-46a1-8941-fdb757e6fc3d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 78707EF4AE8B454F92EC17AF9626368F Ref B: PNQ231110906031 Ref C: 2025-11-12T08:57:38Z' + 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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3699' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B201382771454E058F3271B9073B479D Ref B: PNQ231110908052 Ref C: 2025-11-12T08:57:39Z' + 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.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 + 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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3699' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 38F7C23CF0D14E1B8ABB49CF0A6584DE Ref B: PNQ231110909040 Ref C: 2025-11-12T08:57:39Z' + 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.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 + 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: + - Wed, 12 Nov 2025 08:57: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: CB20158E8EC6442EB82E4896C821A231 Ref B: PNQ231110907025 Ref C: 2025-11-12T08:57:40Z' + 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.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 + 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: + - Wed, 12 Nov 2025 08:57: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-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: C5F71C96F54F4B74A1F29E651AA2740C Ref B: PNQ231110907060 Ref C: 2025-11-12T08:57:42Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2FC7A95665E54498876CBF0F83AA6907 Ref B: PNQ231110909052 Ref C: 2025-11-12T08:57:43Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3714' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:57: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 380B2218E88348F3AF3AD5EA915E964B Ref B: PNQ231110907023 Ref C: 2025-11-12T08:57:43Z' + 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.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/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: + - Wed, 12 Nov 2025 08:57: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-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 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: CF76026220A248108F81333EA2685032 Ref B: PNQ231110907054 Ref C: 2025-11-12T08:57:44Z' + 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..c6d6dd74e3d --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_function_list_show_multirevision_scenarios.yaml @@ -0,0 +1,4243 @@ +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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:51: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 63A059385F6A4DAFAA7787E7F6666A2A Ref B: PNQ231110908023 Ref C: 2025-11-12T08:51:32Z' + 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.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 + 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}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1795' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:51: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 120067BA69134134B33474326E1996AF Ref B: PNQ231110907054 Ref C: 2025-11-12T08:51:33Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:51: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 068847FFA13D4ACC8BC231C7189E30BB Ref B: PNQ231110907052 Ref C: 2025-11-12T08:51:34Z' + 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.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 + 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}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '1795' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:51: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9E4BC1E7BA7840BDA4861D4436136F29 Ref B: PNQ231110909052 Ref C: 2025-11-12T08:51:35Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:51: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3EAC1AB0CFF34F04868BAC6792F39AEA Ref B: PNQ231110907042 Ref C: 2025-11-12T08:51:35Z' + status: + code: 200 + message: OK +- request: + 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": + 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: + - '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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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 + cache-control: + - no-cache + content-length: + - '3037' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:51: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-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 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: 769BA329C363401F853A7E75BD8F1ECE Ref B: PNQ231110909040 Ref C: 2025-11-12T08:51:36Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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:51: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/eastus2/ab411084-55d4-4867-bc9a-2cb2802a7229 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 58A0A59611C24558BE78E80F662E036F Ref B: PNQ231110908036 Ref C: 2025-11-12T08:51:36Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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:51: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/centralindia/b8202210-e64b-416c-8961-8daac96ed5bf + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 7A510B1922EF4329BF6CEC4672A28215 Ref B: PNQ231110909054 Ref C: 2025-11-12T08:51:39Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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:51: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-operation-identifier: + - 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: 4D25776D91A34609984EEB1D82739BED Ref B: PNQ231110909040 Ref C: 2025-11-12T08:51:42Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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:51: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/southindia/74fb11db-8bab-4998-afd8-226591951a35 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D2B912785A044383878EC86BDE2B946D Ref B: PNQ231110909025 Ref C: 2025-11-12T08:51: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 --revisions-mode + 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/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/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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:51: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/westindia/589717b3-ee1d-4058-b1f6-ba1dec2db411 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 3D5C25AA4329470087EFA26112DB2647 Ref B: PNQ231110908029 Ref C: 2025-11-12T08:51:47Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3687' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:51: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 41E341FA25814A0EAEF1885BE483292C Ref B: PNQ231110906052 Ref C: 2025-11-12T08:51:48Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:52:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 82860D2FCB5C4A5BA464C3FD12E86B1C Ref B: PNQ231110907062 Ref C: 2025-11-12T08:52:20Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:52:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 25B1794548724772A423A4ACF60BB738 Ref B: PNQ231110906054 Ref C: 2025-11-12T08:52:20Z' + 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://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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3687' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:52: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C1392ED18A7D4D71BC8D7C84983745CE Ref B: PNQ231110909034 Ref C: 2025-11-12T08:52:21Z' + 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.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 + 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, 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 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 12 Nov 2025 08:52:23 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 + 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/eastus2/34092aa7-28a6-457b-b1c5-2d76cfde768c + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: B02DE91607BA4620B587FBB654AAE39A Ref B: PNQ231110909031 Ref C: 2025-11-12T08:52:22Z' + 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.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://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: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/eastus2/bc70f449-5840-48e1-b334-fc88ad77eea2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C23D1D9539A84E23A3FDA0EB00EECDB1 Ref B: PNQ231110909042 Ref C: 2025-11-12T08:52:27Z' + 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://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:30 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/b2951811-a84d-4e18-9e91-e3825a0da0b9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D4DE72FCF5AA429FB38CD8AD45A75BC1 Ref B: PNQ231110909042 Ref C: 2025-11-12T08:52:29Z' + 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://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: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/centralindia/0a11bd44-7822-4eba-af2d-14639138b031 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: D6B0CC7BBA3B4905A87C2AD0594510E4 Ref B: PNQ231110908025 Ref C: 2025-11-12T08:52:33Z' + 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://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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:52: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/centralindia/7300e61b-8cd6-42a9-8142-f6cc2a190daa + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F85AD0AD0A2343ACB6425BA2B7725875 Ref B: PNQ231110909029 Ref C: 2025-11-12T08:52:36Z' + 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://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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3684' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:52: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 44363AFC09F142B2AC5D406ECC722302 Ref B: PNQ231110908040 Ref C: 2025-11-12T08:52:37Z' + 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/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"}}]}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '2008' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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/eastus2/d12e740e-16b3-456b-82f4-47da5bd26f2c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E2971E69059D430C9152587B698AD496 Ref B: PNQ231110908060 Ref C: 2025-11-12T08:53:08Z' + 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.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":"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","West Central + US","UK West","Central India","Japan West","Australia Southeast","France South","Jio + India West","Spain Central","Italy North","Poland Central","South India","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2025-10-02-preview","2025-07-01","2025-02-02-preview","2025-01-01","2024-10-02-preview","2024-08-02-preview","2024-03-01","2024-02-02-preview","2023-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"}' + headers: + cache-control: + - no-cache + content-length: + - '40152' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5E31EC29A0AA4DE39AAD28C62FCAEDE3 Ref B: PNQ231110907023 Ref C: 2025-11-12T08:53:10Z' + 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/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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3527' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B44977AE75E9428B95B15A8189E7FB55 Ref B: PNQ231110906025 Ref C: 2025-11-12T08:53:10Z' + 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/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"}}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '997' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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/eastus2/174b930c-c6cc-43dd-98ff-069a53d6c74e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BDCA3296609C4A139F7958AF7A3EF546 Ref B: PNQ231110909029 Ref C: 2025-11-12T08:53:11Z' + 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.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-07-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, 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 + cache-control: + - no-cache + content-length: + - '0' + date: + - Wed, 12 Nov 2025 08:53:12 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 + 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/eastus2/b21203c2-c533-4eca-92a3-1b46eb2f19b1 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '799' + x-msedge-ref: + - 'Ref A: 8614B73AB21B4AB0A7C2C93446BF3AD5 Ref B: PNQ231110907025 Ref C: 2025-11-12T08:53:12Z' + 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.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":"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: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/eastus2/d2803695-b681-4e28-be00-ecb2a5aa7514 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 35AFAB8EDFA5452A901EF4E9DACA8BEB Ref B: PNQ231110909060 Ref C: 2025-11-12T08:53:13Z' + 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":"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: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/eastus2/bf6fda14-2da4-40df-ac29-32ee74f993d6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5C9097A75162407A8D8BF9BF962D89FA Ref B: PNQ231110908060 Ref C: 2025-11-12T08:53:15Z' + 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":"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: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/eastus2/fab2a273-f4c9-482e-81db-7549996462c2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F1AF8A21B59341C8BB7788EA8B753062 Ref B: PNQ231110906060 Ref C: 2025-11-12T08:53:18Z' + 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":"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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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/westindia/5c531c19-206d-421d-aee7-4ad8a8d2df44 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: CEC6BCCC535D457C93AA4A5A8081C6CA Ref B: PNQ231110909060 Ref C: 2025-11-12T08:53:24Z' + 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/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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3580' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 10A88C0A75D143DC84BF687C456F489E Ref B: PNQ231110907034 Ref C: 2025-11-12T08:53: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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3737' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4973F4BFA70045B5ACAE7445FE3C36FB Ref B: PNQ231110907023 Ref C: 2025-11-12T08:53:26Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3737' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 22BBD06D1200441DA55771F4B3B243A6 Ref B: PNQ231110907040 Ref C: 2025-11-12T08:53:27Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3737' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4BF9479004E64DDBAD3FFD50893CC15D Ref B: PNQ231110906029 Ref C: 2025-11-12T08:53:28Z' + 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.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/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: + - Wed, 12 Nov 2025 08:53:28 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/eastus2/9b8fce7b-e847-47c7-bfc1-18d71a590351 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: FF1AF4B3CA48492C9093CAB052EF089C Ref B: PNQ231110906036 Ref C: 2025-11-12T08:53:28Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3737' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53:30 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: 301B6782D57747F7BF5C0E983CF632A8 Ref B: PNQ231110907054 Ref C: 2025-11-12T08:53:30Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3737' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 444748C2A6954B728482462305908E89 Ref B: PNQ231110908042 Ref C: 2025-11-12T08:53:30Z' + 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.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 + 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}}]}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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/eastus2/0bb1dbcd-ef76-4e39-9f99-4b94ecd49769 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C6FAF371CE054D43B12E764B3ABD690E Ref B: PNQ231110909025 Ref C: 2025-11-12T08:53:31Z' + 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.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 + 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"}' + headers: + api-supported-versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, + 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, + 2024-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: + - '3737' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B1E4904A46234F49A39290E274135042 Ref B: PNQ231110909062 Ref C: 2025-11-12T08:53: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 --revision + 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/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":"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, 2026-01-01 + cache-control: + - no-cache + content-length: + - '3737' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 4F958E6D4C9542B4876D2314C156EA4D Ref B: PNQ231110906036 Ref C: 2025-11-12T08:53: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 --revision + 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/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}}]}' + headers: + api-supported-versions: + - 2025-10-02-preview + cache-control: + - no-cache + content-length: + - '513' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 12 Nov 2025 08:53: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/eastus2/466eb050-5a0b-4bf1-b7d4-99bbff0fb5f2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: EF7C447B27544740B67645571B4E18E0 Ref B: PNQ231110909060 Ref C: 2025-11-12T08:53:33Z' + 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..1fa972be0cc --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_function.py @@ -0,0 +1,512 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# 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 +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) + cmd = ['azdev', 'extension', 'add', 'application-insights'] + run(cmd, check=True) + # cmd = ['azdev', 'extension', 'add', 'azure-mgmt-applicationinsights'] + # run(cmd, check=True) + sleep(120) + + + @AllowLargeResponse(8192) + @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) + 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() + 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() + + # 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="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) + 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="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) + + # 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="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" + 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="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 + 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) + 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 when this can be used with v2 envs + 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 diff --git a/src/containerapp/azext_containerapp/tests/latest/utils.py b/src/containerapp/azext_containerapp/tests/latest/utils.py index c3868149d12..be12dad8fa0 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_vnet_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}")