diff --git a/src/containerapp/azext_containerapp/__init__.py b/src/containerapp/azext_containerapp/__init__.py
index dcff6d86def..73c0da76d8d 100644
--- a/src/containerapp/azext_containerapp/__init__.py
+++ b/src/containerapp/azext_containerapp/__init__.py
@@ -7,17 +7,20 @@
from azure.cli.core import AzCommandsLoader
from azext_containerapp._help import helps # pylint: disable=unused-import
-
+from azext_containerapp._client_factory import app_client_factory
class ContainerappCommandsLoader(AzCommandsLoader):
def __init__(self, cli_ctx=None):
from azure.cli.core.commands import CliCommandType
+ from azure.cli.core.profiles import ResourceType
+
containerapp_custom = CliCommandType(
operations_tmpl='azext_containerapp.custom#{}',
- client_factory=None)
+ client_factory=app_client_factory)
super(ContainerappCommandsLoader, self).__init__(cli_ctx=cli_ctx,
- custom_command_type=containerapp_custom)
+ custom_command_type=containerapp_custom,
+ resource_type=ResourceType.MGMT_APPCONTAINERS)
def load_command_table(self, args):
from azext_containerapp.commands import load_command_table
@@ -29,4 +32,4 @@ def load_arguments(self, command):
load_arguments(self, command)
-COMMAND_LOADER_CLS = ContainerappCommandsLoader
+COMMAND_LOADER_CLS = ContainerappCommandsLoader
\ No newline at end of file
diff --git a/src/containerapp/azext_containerapp/_client_factory.py b/src/containerapp/azext_containerapp/_client_factory.py
index 4e8ad424138..109fda3adac 100644
--- a/src/containerapp/azext_containerapp/_client_factory.py
+++ b/src/containerapp/azext_containerapp/_client_factory.py
@@ -33,6 +33,8 @@ def handle_raw_exception(e):
import json
stringErr = str(e)
+ if "response" in stringErr.lower():
+ stringErr = stringErr[stringErr.lower().rindex("response"):]
if "{" in stringErr and "}" in stringErr:
jsonError = stringErr[stringErr.index("{"):stringErr.rindex("}") + 1]
@@ -65,11 +67,46 @@ def cf_resource_groups(cli_ctx, subscription_id=None):
def log_analytics_client_factory(cli_ctx):
from azure.mgmt.loganalytics import LogAnalyticsManagementClient
-
return get_mgmt_service_client(cli_ctx, LogAnalyticsManagementClient).workspaces
def log_analytics_shared_key_client_factory(cli_ctx):
from azure.mgmt.loganalytics import LogAnalyticsManagementClient
-
return get_mgmt_service_client(cli_ctx, LogAnalyticsManagementClient).shared_keys
+
+
+def app_client_factory(cli_ctx, *_):
+ from azure.mgmt.appcontainers import ContainerAppsAPIClient
+ from azure.cli.core.commands.client_factory import get_mgmt_service_client
+ return get_mgmt_service_client(cli_ctx, ContainerAppsAPIClient)
+
+
+def cf_containerapps(cli_ctx, *_):
+ return app_client_factory(cli_ctx).container_apps
+
+
+def cf_managedenvs(cli_ctx, *_):
+ return app_client_factory(cli_ctx).managed_environments
+
+
+def cf_revisions(cli_ctx, *_):
+ return app_client_factory(cli_ctx).container_apps_revisions
+
+
+def cf_replicas(cli_ctx, *_):
+ return app_client_factory(cli_ctx).container_apps_revision_replicas
+
+
+def cf_dapr_components(cli_ctx, *_):
+ return app_client_factory(cli_ctx).dapr_components
+
+
+def cf_certificates(cli_ctx, *_):
+ return app_client_factory(cli_ctx).certificates
+
+
+def cf_namespaces(cli_ctx, *_):
+ return app_client_factory(cli_ctx).namespaces
+
+def cf_storages(cli_ctx, *_):
+ return app_client_factory(cli_ctx).managed_environments_storages
diff --git a/src/containerapp/azext_containerapp/_utils.py b/src/containerapp/azext_containerapp/_utils.py
index 22fcc7f3020..bd561c6c778 100644
--- a/src/containerapp/azext_containerapp/_utils.py
+++ b/src/containerapp/azext_containerapp/_utils.py
@@ -1287,11 +1287,13 @@ def load_cert_file(file_path, cert_password=None):
def check_cert_name_availability(cmd, resource_group_name, name, cert_name):
- name_availability_request = {}
- name_availability_request["name"] = cert_name
- name_availability_request["type"] = CHECK_CERTIFICATE_NAME_AVAILABILITY_TYPE
+ from ._client_factory import cf_namespaces
+ from azure.mgmt.appcontainers.models import CheckNameAvailabilityRequest
+ client = cf_namespaces(cmd.cli_ctx)
+
+ name_availability_request = CheckNameAvailabilityRequest(name=cert_name, type=CHECK_CERTIFICATE_NAME_AVAILABILITY_TYPE)
try:
- r = ManagedEnvironmentClient.check_name_availability(cmd, resource_group_name, name, name_availability_request)
+ r = client.check_name_availability(resource_group_name=resource_group_name, environment_name=name, check_name_availability_request=name_availability_request)
except CLIError as e:
handle_raw_exception(e)
return r
diff --git a/src/containerapp/azext_containerapp/commands.py b/src/containerapp/azext_containerapp/commands.py
index fe284926d95..a244ac66578 100644
--- a/src/containerapp/azext_containerapp/commands.py
+++ b/src/containerapp/azext_containerapp/commands.py
@@ -6,7 +6,7 @@
# pylint: disable=line-too-long, too-many-statements, bare-except
# from azure.cli.core.commands import CliCommandType
# from msrestazure.tools import is_valid_resource_id, parse_resource_id
-from azext_containerapp._client_factory import ex_handler_factory
+from azext_containerapp._client_factory import ex_handler_factory, cf_containerapps, cf_managedenvs, cf_revisions, cf_replicas, cf_dapr_components, cf_certificates, cf_storages
from ._validators import validate_ssh
@@ -44,86 +44,86 @@ def transform_revision_list_output(revs):
def load_command_table(self, _):
- with self.command_group('containerapp') as g:
+ with self.command_group('containerapp', client_factory=cf_containerapps) as g:
g.custom_show_command('show', 'show_containerapp', table_transformer=transform_containerapp_output)
g.custom_command('list', 'list_containerapp', table_transformer=transform_containerapp_list_output)
g.custom_command('create', 'create_containerapp', supports_no_wait=True, exception_handler=ex_handler_factory(), table_transformer=transform_containerapp_output)
g.custom_command('update', 'update_containerapp', supports_no_wait=True, exception_handler=ex_handler_factory(), table_transformer=transform_containerapp_output)
g.custom_command('delete', 'delete_containerapp', supports_no_wait=True, confirmation=True, exception_handler=ex_handler_factory())
- g.custom_command('exec', 'containerapp_ssh', validator=validate_ssh)
- g.custom_command('up', 'containerapp_up', supports_no_wait=False, exception_handler=ex_handler_factory())
+ g.custom_command('exec', 'containerapp_ssh', validator=validate_ssh) # TODO: Silas
+ g.custom_command('up', 'containerapp_up', supports_no_wait=False, exception_handler=ex_handler_factory()) # TODO
g.custom_command('browse', 'open_containerapp_in_browser')
- with self.command_group('containerapp replica') as g:
+ with self.command_group('containerapp replica', client_factory=cf_replicas) as g: # TODO: Test
g.custom_show_command('show', 'get_replica') # TODO implement the table transformer
g.custom_command('list', 'list_replicas')
with self.command_group('containerapp logs') as g:
- g.custom_show_command('show', 'stream_containerapp_logs', validator=validate_ssh)
+ g.custom_show_command('show', 'stream_containerapp_logs', validator=validate_ssh) # TODO: Silas
- with self.command_group('containerapp env') as g:
+ with self.command_group('containerapp env', client_factory=cf_managedenvs) as g: # TODO: no_wait support
g.custom_show_command('show', 'show_managed_environment')
g.custom_command('list', 'list_managed_environments')
g.custom_command('create', 'create_managed_environment', supports_no_wait=True, exception_handler=ex_handler_factory())
g.custom_command('delete', 'delete_managed_environment', supports_no_wait=True, confirmation=True, exception_handler=ex_handler_factory())
- with self.command_group('containerapp env dapr-component') as g:
+ with self.command_group('containerapp env dapr-component', client_factory=cf_dapr_components) as g:
g.custom_command('list', 'list_dapr_components')
g.custom_show_command('show', 'show_dapr_component')
g.custom_command('set', 'create_or_update_dapr_component')
g.custom_command('remove', 'remove_dapr_component')
- with self.command_group('containerapp env certificate') as g:
- g.custom_command('list', 'list_certificates')
- g.custom_command('upload', 'upload_certificate')
- g.custom_command('delete', 'delete_certificate', confirmation=True, exception_handler=ex_handler_factory())
+ with self.command_group('containerapp env certificate', client_factory=cf_certificates) as g:
+ g.custom_command('list', 'list_certificates') # TODO: Testing - Silas
+ g.custom_command('upload', 'upload_certificate') # TODO: Testing - Silas
+ g.custom_command('delete', 'delete_certificate', confirmation=True, exception_handler=ex_handler_factory()) # TODO: Testing - Silas
- with self.command_group('containerapp env storage', is_preview=True) as g:
+ with self.command_group('containerapp env storage', client_factory=cf_storages, is_preview=True) as g: # TODO: test no wait support
g.custom_show_command('show', 'show_storage')
g.custom_command('list', 'list_storage')
g.custom_command('set', 'create_or_update_storage', supports_no_wait=True, exception_handler=ex_handler_factory())
g.custom_command('remove', 'remove_storage', supports_no_wait=True, confirmation=True, exception_handler=ex_handler_factory())
- with self.command_group('containerapp identity') as g:
+ with self.command_group('containerapp identity', client_factory=cf_containerapps) as g: # Tests pass
g.custom_command('assign', 'assign_managed_identity', supports_no_wait=True, exception_handler=ex_handler_factory())
g.custom_command('remove', 'remove_managed_identity', supports_no_wait=True, exception_handler=ex_handler_factory())
g.custom_show_command('show', 'show_managed_identity')
- with self.command_group('containerapp github-action') as g:
+ with self.command_group('containerapp github-action') as g: # TODO: Silas
g.custom_command('add', 'create_or_update_github_action', exception_handler=ex_handler_factory())
g.custom_show_command('show', 'show_github_action', exception_handler=ex_handler_factory())
g.custom_command('delete', 'delete_github_action', exception_handler=ex_handler_factory())
- with self.command_group('containerapp revision') as g:
+ with self.command_group('containerapp revision', client_factory=cf_revisions) as g: # TODO: Test
g.custom_command('activate', 'activate_revision')
g.custom_command('deactivate', 'deactivate_revision')
g.custom_command('list', 'list_revisions', table_transformer=transform_revision_list_output, exception_handler=ex_handler_factory())
g.custom_command('restart', 'restart_revision')
g.custom_show_command('show', 'show_revision', table_transformer=transform_revision_output, exception_handler=ex_handler_factory())
- g.custom_command('copy', 'copy_revision', exception_handler=ex_handler_factory())
- g.custom_command('set-mode', 'set_revision_mode', exception_handler=ex_handler_factory())
+ g.custom_command('copy', 'copy_revision', client_factory=cf_containerapps, supports_no_wait=True, exception_handler=ex_handler_factory())
+ g.custom_command('set-mode', 'set_revision_mode', client_factory=cf_containerapps, supports_no_wait=True, exception_handler=ex_handler_factory())
- with self.command_group('containerapp revision label') as g:
- g.custom_command('add', 'add_revision_label')
+ with self.command_group('containerapp revision label', client_factory=cf_containerapps) as g: # Tests
+ g.custom_command('add', 'add_revision_label', supports_no_wait=True)
g.custom_command('remove', 'remove_revision_label')
g.custom_command('swap', 'swap_revision_label')
- with self.command_group('containerapp ingress') as g:
+ with self.command_group('containerapp ingress', client_factory=cf_containerapps) as g: # TODO: Test
g.custom_command('enable', 'enable_ingress', exception_handler=ex_handler_factory())
g.custom_command('disable', 'disable_ingress', exception_handler=ex_handler_factory())
g.custom_show_command('show', 'show_ingress')
- with self.command_group('containerapp ingress traffic') as g:
+ with self.command_group('containerapp ingress traffic', client_factory=cf_containerapps) as g: # TODO: Test
g.custom_command('set', 'set_ingress_traffic', exception_handler=ex_handler_factory())
g.custom_show_command('show', 'show_ingress_traffic')
- with self.command_group('containerapp registry') as g:
+ with self.command_group('containerapp registry', client_factory=cf_containerapps) as g: # TODO
g.custom_command('set', 'set_registry', exception_handler=ex_handler_factory())
g.custom_show_command('show', 'show_registry')
g.custom_command('list', 'list_registry')
g.custom_command('remove', 'remove_registry', exception_handler=ex_handler_factory())
- with self.command_group('containerapp secret') as g:
+ with self.command_group('containerapp secret', client_factory=cf_containerapps) as g: # TODO
g.custom_command('list', 'list_secrets')
g.custom_show_command('show', 'show_secret')
g.custom_command('remove', 'remove_secrets', exception_handler=ex_handler_factory())
diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py
index 58f5f65dd49..be1180e4f74 100644
--- a/src/containerapp/azext_containerapp/custom.py
+++ b/src/containerapp/azext_containerapp/custom.py
@@ -20,6 +20,7 @@
ArgumentUsageError,
MutuallyExclusiveArgumentError)
from azure.cli.core.commands.client_factory import get_subscription_id
+from azure.cli.core.commands import LongRunningOperation
from azure.cli.core.util import open_page_in_browser
from azure.cli.command_modules.appservice.utils import _normalize_location
from knack.log import get_logger
@@ -75,29 +76,13 @@
logger = get_logger(__name__)
-# These properties should be under the "properties" attribute. Move the properties under "properties" attribute
-def process_loaded_yaml(yaml_containerapp):
- if not yaml_containerapp.get('properties'):
- yaml_containerapp['properties'] = {}
-
- nested_properties = ["provisioningState", "managedEnvironmentId", "latestRevisionName", "latestRevisionFqdn",
- "customDomainVerificationId", "configuration", "template", "outboundIPAddresses"]
- for nested_property in nested_properties:
- tmp = yaml_containerapp.get(nested_property)
- if tmp:
- yaml_containerapp['properties'][nested_property] = tmp
- del yaml_containerapp[nested_property]
-
- return yaml_containerapp
-
-
def load_yaml_file(file_name):
import yaml
import errno
try:
with open(file_name) as stream: # pylint: disable=unspecified-encoding
- return yaml.safe_load(stream)
+ return yaml.safe_load(stream.read().replace('\x00',''))
except (IOError, OSError) as ex:
if getattr(ex, 'errno', 0) == errno.ENOENT:
raise ValidationError('{} does not exist'.format(file_name)) from ex
@@ -120,174 +105,8 @@ def create_deserializer():
return Deserializer(deserializer)
-def update_containerapp_yaml(cmd, name, resource_group_name, file_name, from_revision=None, no_wait=False):
- yaml_containerapp = process_loaded_yaml(load_yaml_file(file_name))
- if type(yaml_containerapp) != dict: # pylint: disable=unidiomatic-typecheck
- raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapps YAML spec.')
-
- if not yaml_containerapp.get('name'):
- yaml_containerapp['name'] = name
- elif yaml_containerapp.get('name').lower() != name.lower():
- logger.warning('The app name provided in the --yaml file "{}" does not match the one provided in the --name flag "{}". The one provided in the --yaml file will be used.'.format(
- yaml_containerapp.get('name'), name))
- name = yaml_containerapp.get('name')
-
- if not yaml_containerapp.get('type'):
- yaml_containerapp['type'] = 'Microsoft.App/containerApps'
- elif yaml_containerapp.get('type').lower() != "microsoft.app/containerapps":
- raise ValidationError('Containerapp type must be \"Microsoft.App/ContainerApps\"')
-
- current_containerapp_def = None
- containerapp_def = None
- try:
- current_containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
- except Exception:
- pass
-
- if not current_containerapp_def:
- raise ValidationError("The containerapp '{}' does not exist".format(name))
-
- # Change which revision we update from
- if from_revision:
- try:
- r = ContainerAppClient.show_revision(cmd=cmd, resource_group_name=resource_group_name, container_app_name=name, name=from_revision)
- except CLIError as e:
- handle_raw_exception(e)
- _update_revision_env_secretrefs(r["properties"]["template"]["containers"], name)
- current_containerapp_def["properties"]["template"] = r["properties"]["template"]
-
- # Deserialize the yaml into a ContainerApp object. Need this since we're not using SDK
- try:
- deserializer = create_deserializer()
-
- containerapp_def = deserializer('ContainerApp', yaml_containerapp)
- except DeserializationError as ex:
- raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapps YAML spec.') from ex
-
- # Remove tags before converting from snake case to camel case, then re-add tags. We don't want to change the case of the tags. Need this since we're not using SDK
- tags = None
- if yaml_containerapp.get('tags'):
- tags = yaml_containerapp.get('tags')
- del yaml_containerapp['tags']
-
- containerapp_def = _convert_object_from_snake_to_camel_case(_object_to_dict(containerapp_def))
- containerapp_def['tags'] = tags
-
- # After deserializing, some properties may need to be moved under the "properties" attribute. Need this since we're not using SDK
- containerapp_def = process_loaded_yaml(containerapp_def)
-
- _get_existing_secrets(cmd, resource_group_name, name, current_containerapp_def)
-
- update_nested_dictionary(current_containerapp_def, containerapp_def)
-
- # Remove "additionalProperties" and read-only attributes that are introduced in the deserialization. Need this since we're not using SDK
- _remove_additional_attributes(current_containerapp_def)
- _remove_readonly_attributes(current_containerapp_def)
-
- try:
- r = ContainerAppClient.create_or_update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=current_containerapp_def, no_wait=no_wait)
-
- if "properties" in r and "provisioningState" in r["properties"] and r["properties"]["provisioningState"].lower() == "waiting" and not no_wait:
- logger.warning('Containerapp creation in progress. Please monitor the creation using `az containerapp show -n {} -g {}`'.format(
- name, resource_group_name
- ))
-
- return r
- except Exception as e:
- handle_raw_exception(e)
-
-
-def create_containerapp_yaml(cmd, name, resource_group_name, file_name, no_wait=False):
- yaml_containerapp = process_loaded_yaml(load_yaml_file(file_name))
- if type(yaml_containerapp) != dict: # pylint: disable=unidiomatic-typecheck
- raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapps YAML spec.')
-
- if not yaml_containerapp.get('name'):
- yaml_containerapp['name'] = name
- elif yaml_containerapp.get('name').lower() != name.lower():
- logger.warning('The app name provided in the --yaml file "{}" does not match the one provided in the --name flag "{}". The one provided in the --yaml file will be used.'.format(
- yaml_containerapp.get('name'), name))
- name = yaml_containerapp.get('name')
-
- if not yaml_containerapp.get('type'):
- yaml_containerapp['type'] = 'Microsoft.App/containerApps'
- elif yaml_containerapp.get('type').lower() != "microsoft.app/containerapps":
- raise ValidationError('Containerapp type must be \"Microsoft.App/ContainerApps\"')
-
- # Deserialize the yaml into a ContainerApp object. Need this since we're not using SDK
- containerapp_def = None
- try:
- deserializer = create_deserializer()
-
- containerapp_def = deserializer('ContainerApp', yaml_containerapp)
- except DeserializationError as ex:
- raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapps YAML spec.') from ex
-
- # Remove tags before converting from snake case to camel case, then re-add tags. We don't want to change the case of the tags. Need this since we're not using SDK
- tags = None
- if yaml_containerapp.get('tags'):
- tags = yaml_containerapp.get('tags')
- del yaml_containerapp['tags']
-
- containerapp_def = _convert_object_from_snake_to_camel_case(_object_to_dict(containerapp_def))
- containerapp_def['tags'] = tags
-
- # After deserializing, some properties may need to be moved under the "properties" attribute. Need this since we're not using SDK
- containerapp_def = process_loaded_yaml(containerapp_def)
-
- # Remove "additionalProperties" and read-only attributes that are introduced in the deserialization. Need this since we're not using SDK
- _remove_additional_attributes(containerapp_def)
- _remove_readonly_attributes(containerapp_def)
-
- # Validate managed environment
- if not containerapp_def["properties"].get('managedEnvironmentId'):
- raise RequiredArgumentMissingError('managedEnvironmentId is required. This can be retrieved using the `az containerapp env show -g MyResourceGroup -n MyContainerappEnvironment --query id` command. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapps YAML spec.')
-
- env_id = containerapp_def["properties"]['managedEnvironmentId']
- env_name = None
- env_rg = None
- env_info = None
-
- if is_valid_resource_id(env_id):
- parsed_managed_env = parse_resource_id(env_id)
- env_name = parsed_managed_env['name']
- env_rg = parsed_managed_env['resource_group']
- else:
- raise ValidationError('Invalid managedEnvironmentId specified. Environment not found')
-
- try:
- env_info = ManagedEnvironmentClient.show(cmd=cmd, resource_group_name=env_rg, name=env_name)
- except:
- pass
-
- if not env_info:
- raise ValidationError("The environment '{}' in resource group '{}' was not found".format(env_name, env_rg))
-
- # Validate location
- if not containerapp_def.get('location'):
- containerapp_def['location'] = env_info['location']
-
- try:
- r = ContainerAppClient.create_or_update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_def, no_wait=no_wait)
-
- if "properties" in r and "provisioningState" in r["properties"] and r["properties"]["provisioningState"].lower() == "waiting" and not no_wait:
- logger.warning('Containerapp creation in progress. Please monitor the creation using `az containerapp show -n {} -g {}`'.format(
- name, resource_group_name
- ))
-
- if "configuration" in r["properties"] and "ingress" in r["properties"]["configuration"] and "fqdn" in r["properties"]["configuration"]["ingress"]:
- logger.warning("\nContainer app created. Access your app at https://{}/\n".format(r["properties"]["configuration"]["ingress"]["fqdn"]))
- else:
- logger.warning("\nContainer app created. To access it over HTTPS, enable ingress: az containerapp ingress enable --help\n")
-
- return r
- except Exception as e:
- handle_raw_exception(e)
-
-
def create_containerapp(cmd,
+ client,
name,
resource_group_name,
yaml=None,
@@ -328,7 +147,9 @@ def create_containerapp(cmd,
registry_user or registry_pass or dapr_enabled or dapr_app_port or dapr_app_id or\
startup_command or args or tags:
not disable_warnings and logger.warning('Additional flags were passed along with --yaml. These flags will be ignored, and the configuration defined in the yaml will be used instead')
- return create_containerapp_yaml(cmd=cmd, name=name, resource_group_name=resource_group_name, file_name=yaml, no_wait=no_wait)
+ poller = client.begin_create_or_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=load_yaml_file(yaml))
+ r = LongRunningOperation(cmd.cli_ctx)(poller)
+ return r
if not image:
image = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest"
@@ -343,16 +164,19 @@ def create_containerapp(cmd,
managed_env_info = None
try:
- managed_env_info = ManagedEnvironmentClient.show(cmd=cmd, resource_group_name=managed_env_rg, name=managed_env_name)
+ from ._client_factory import cf_managedenvs
+ managed_env_info = cf_managedenvs(cmd.cli_ctx).get(resource_group_name=managed_env_rg, environment_name=managed_env_name)
except:
pass
if not managed_env_info:
raise ValidationError("The environment '{}' does not exist. Specify a valid environment".format(managed_env))
- location = managed_env_info["location"]
+ location = managed_env_info.location
_ensure_location_allowed(cmd, location, CONTAINER_APPS_RP, "containerApps")
+ from azure.mgmt.appcontainers.models import Ingress, RegistryCredentials, Dapr, Configuration, ManagedServiceIdentity, Scale, ContainerResources, Container, Template, ContainerApp, UserAssignedIdentity
+
external_ingress = None
if ingress is not None:
if ingress.lower() == "internal":
@@ -362,10 +186,7 @@ def create_containerapp(cmd,
ingress_def = None
if target_port is not None and ingress is not None:
- ingress_def = IngressModel
- ingress_def["external"] = external_ingress
- ingress_def["targetPort"] = target_port
- ingress_def["transport"] = transport
+ ingress_def = Ingress(external=external_ingress, target_port=target_port, transport=transport)
secrets_def = None
if secrets is not None:
@@ -373,37 +194,23 @@ def create_containerapp(cmd,
registries_def = None
if registry_server is not None:
- registries_def = RegistryCredentialsModel
-
# Infer credentials if not supplied and its azurecr
if registry_user is None or registry_pass is None:
registry_user, registry_pass = _infer_acr_credentials(cmd, registry_server, disable_warnings)
-
- registries_def["server"] = registry_server
- registries_def["username"] = registry_user
-
if secrets_def is None:
secrets_def = []
- registries_def["passwordSecretRef"] = store_as_secret_and_return_secret_ref(secrets_def, registry_user, registry_server, registry_pass, disable_warnings=disable_warnings)
+ pass_ref = store_as_secret_and_return_secret_ref(secrets_def, registry_user, registry_server, registry_pass, disable_warnings=disable_warnings)
+
+ registries_def = RegistryCredentials(server=registry_server, username=registry_user, password_secret_ref=pass_ref)
dapr_def = None
if dapr_enabled:
- dapr_def = DaprModel
- dapr_def["enabled"] = True
- dapr_def["appId"] = dapr_app_id
- dapr_def["appPort"] = dapr_app_port
- dapr_def["appProtocol"] = dapr_app_protocol
-
- config_def = ConfigurationModel
- config_def["secrets"] = secrets_def
- config_def["activeRevisionsMode"] = revisions_mode
- config_def["ingress"] = ingress_def
- config_def["registries"] = [registries_def] if registries_def is not None else None
- config_def["dapr"] = dapr_def
+ dapr_def = Dapr(enabled=True, app_id=dapr_app_id, app_port=dapr_app_port, app_protocol=dapr_app_protocol)
+
+ config_def = Configuration(secrets=secrets_def, activate_revisions_mode=revisions_mode, ingress=ingress_def, registries=[registries_def] if registries_def is not None else None, dapr=dapr_def)
# Identity actions
- identity_def = ManagedServiceIdentityModel
- identity_def["type"] = "None"
+ identity_def = ManagedServiceIdentity(type="None")
assign_system_identity = system_assigned
if user_assigned:
@@ -412,68 +219,56 @@ def create_containerapp(cmd,
assign_user_identities = []
if assign_system_identity and assign_user_identities:
- identity_def["type"] = "SystemAssigned, UserAssigned"
+ identity_def.type = "SystemAssigned, UserAssigned"
elif assign_system_identity:
- identity_def["type"] = "SystemAssigned"
+ identity_def.type = "SystemAssigned"
elif assign_user_identities:
- identity_def["type"] = "UserAssigned"
+ identity_def.type = "UserAssigned"
+ valid_user_ids = {}
if assign_user_identities:
- identity_def["userAssignedIdentities"] = {}
subscription_id = get_subscription_id(cmd.cli_ctx)
for r in assign_user_identities:
r = _ensure_identity_resource_id(subscription_id, resource_group_name, r)
- identity_def["userAssignedIdentities"][r] = {} # pylint: disable=unsupported-assignment-operation
+ valid_user_ids[r] = UserAssignedIdentity()
+
+ identity_def.user_assigned_identities = valid_user_ids
scale_def = None
if min_replicas is not None or max_replicas is not None:
- scale_def = ScaleModel
- scale_def["minReplicas"] = min_replicas
- scale_def["maxReplicas"] = max_replicas
+ scale_def = Scale(min_replicas=min_replicas, max_replicas=max_replicas)
resources_def = None
if cpu is not None or memory is not None:
- resources_def = ContainerResourcesModel
- resources_def["cpu"] = cpu
- resources_def["memory"] = memory
+ resources_def = ContainerResources(cpu=cpu, memory=memory)
- container_def = ContainerModel
- container_def["name"] = container_name if container_name else name
- container_def["image"] = image
+ container_def = Container(name=container_name if container_name else name, image=image)
if env_vars is not None:
- container_def["env"] = parse_env_var_flags(env_vars)
+ container_def.env = parse_env_var_flags(env_vars)
if startup_command is not None:
- container_def["command"] = startup_command
+ container_def.command = startup_command
if args is not None:
- container_def["args"] = args
+ container_def.args = args
if resources_def is not None:
- container_def["resources"] = resources_def
+ container_def.resources = resources_def
- template_def = TemplateModel
- template_def["containers"] = [container_def]
- template_def["scale"] = scale_def
+ template_def = Template(containers=[container_def], scale=scale_def)
if revision_suffix is not None:
- template_def["revisionSuffix"] = revision_suffix
+ template_def.revision_suffix = revision_suffix
- containerapp_def = ContainerAppModel
- containerapp_def["location"] = location
- containerapp_def["identity"] = identity_def
- containerapp_def["properties"]["managedEnvironmentId"] = managed_env
- containerapp_def["properties"]["configuration"] = config_def
- containerapp_def["properties"]["template"] = template_def
- containerapp_def["tags"] = tags
+ containerapp_def = ContainerApp(location=location, identity=identity_def, managed_environment_id=managed_env, configuration=config_def, template=template_def, tags=tags)
try:
- r = ContainerAppClient.create_or_update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_def, no_wait=no_wait)
-
- if "properties" in r and "provisioningState" in r["properties"] and r["properties"]["provisioningState"].lower() == "waiting" and not no_wait:
- not disable_warnings and logger.warning('Containerapp creation in progress. Please monitor the creation using `az containerapp show -n {} -g {}`'.format(name, resource_group_name))
+ poller = client.begin_create_or_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_def)
+ if not no_wait:
+ r = LongRunningOperation(cmd.cli_ctx)(poller)
+ else:
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
- if "configuration" in r["properties"] and "ingress" in r["properties"]["configuration"] and "fqdn" in r["properties"]["configuration"]["ingress"]:
- not disable_warnings and logger.warning("\nContainer app created. Access your app at https://{}/\n".format(r["properties"]["configuration"]["ingress"]["fqdn"]))
+ if r.configuration.ingress and r.configuration.ingress.fqdn:
+ not disable_warnings and logger.warning("\nContainer app created. Access your app at https://{}/\n".format(r.configuration.ingress.fqdn))
else:
not disable_warnings and logger.warning("\nContainer app created. To access it over HTTPS, enable ingress: az containerapp ingress enable --help\n")
@@ -483,6 +278,7 @@ def create_containerapp(cmd,
def update_containerapp_logic(cmd,
+ client,
name,
resource_group_name,
yaml=None,
@@ -501,7 +297,12 @@ def update_containerapp_logic(cmd,
args=None,
tags=None,
no_wait=False,
- from_revision=None):
+ from_revision=None,
+ ingress=None,
+ target_port=None,
+ registry_server=None,
+ registry_user=None,
+ registry_pass=None):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
if yaml:
@@ -509,26 +310,31 @@ def update_containerapp_logic(cmd,
set_env_vars or remove_env_vars or replace_env_vars or remove_all_env_vars or cpu or memory or\
startup_command or args or tags:
logger.warning('Additional flags were passed along with --yaml. These flags will be ignored, and the configuration defined in the yaml will be used instead')
- return update_containerapp_yaml(cmd=cmd, name=name, resource_group_name=resource_group_name, file_name=yaml, no_wait=no_wait, from_revision=from_revision)
+ poller = client.begin_create_or_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=load_yaml_file(yaml))
+ r = LongRunningOperation(cmd.cli_ctx)(poller)
+ return r
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
if not containerapp_def:
raise ResourceNotFoundError("The containerapp '{}' does not exist".format(name))
+ new_containerapp = {}
+ new_containerapp["properties"] = {}
if from_revision:
try:
- r = ContainerAppClient.show_revision(cmd=cmd, resource_group_name=resource_group_name, container_app_name=name, name=from_revision)
+ from ._client_factory import cf_revisions
+ r = cf_revisions(cmd.cli_ctx).get_revision(resource_group_name=resource_group_name, container_app_name=name, revision_name=from_revision).as_dict()
except CLIError as e:
# Error handle the case where revision not found?
handle_raw_exception(e)
_update_revision_env_secretrefs(r["properties"]["template"]["containers"], name)
- containerapp_def["properties"]["template"] = r["properties"]["template"]
+ new_containerapp["properties"]["template"] = r["properties"]["template"]
# Doing this while API has bug. If env var is an empty string, API doesn't return "value" even though the "value" should be an empty string
if "properties" in containerapp_def and "template" in containerapp_def["properties"] and "containers" in containerapp_def["properties"]["template"]:
@@ -541,24 +347,29 @@ def update_containerapp_logic(cmd,
update_map = {}
update_map['scale'] = min_replicas or max_replicas
update_map['container'] = image or container_name or set_env_vars is not None or remove_env_vars is not None or replace_env_vars is not None or remove_all_env_vars or cpu or memory or startup_command is not None or args is not None
+ update_map['ingress'] = ingress or target_port
+ update_map['registry'] = registry_server or registry_user or registry_pass
if tags:
- _add_or_update_tags(containerapp_def, tags)
+ _add_or_update_tags(new_containerapp, tags)
if revision_suffix is not None:
- containerapp_def["properties"]["template"]["revisionSuffix"] = revision_suffix
+ new_containerapp["properties"]["template"] = {} if "template" not in new_containerapp["properties"] else new_containerapp["properties"]["template"]
+ new_containerapp["properties"]["template"]["revisionSuffix"] = revision_suffix
# Containers
if update_map["container"]:
+ new_containerapp["properties"]["template"] = {} if "template" not in new_containerapp["properties"] else new_containerapp["properties"]["template"]
+ new_containerapp["properties"]["template"]["containers"] = containerapp_def["properties"]["template"]["containers"]
if not container_name:
- if len(containerapp_def["properties"]["template"]["containers"]) == 1:
- container_name = containerapp_def["properties"]["template"]["containers"][0]["name"]
+ if len(new_containerapp["properties"]["template"]["containers"]) == 1:
+ container_name = new_containerapp["properties"]["template"]["containers"][0]["name"]
else:
raise ValidationError("Usage error: --container-name is required when adding or updating a container")
# Check if updating existing container
updating_existing_container = False
- for c in containerapp_def["properties"]["template"]["containers"]:
+ for c in new_containerapp["properties"]["template"]["containers"]:
if c["name"].lower() == container_name.lower():
updating_existing_container = True
@@ -651,25 +462,89 @@ def update_containerapp_logic(cmd,
if resources_def is not None:
container_def["resources"] = resources_def
- containerapp_def["properties"]["template"]["containers"].append(container_def)
+ new_containerapp["properties"]["template"]["containers"].append(container_def)
# Scale
if update_map["scale"]:
- if "scale" not in containerapp_def["properties"]["template"]:
- containerapp_def["properties"]["template"]["scale"] = {}
+ new_containerapp["properties"]["template"] = {} if "template" not in new_containerapp["properties"] else new_containerapp["properties"]["template"]
+ if "scale" not in new_containerapp["properties"]["template"]:
+ new_containerapp["properties"]["template"]["scale"] = {}
if min_replicas is not None:
- containerapp_def["properties"]["template"]["scale"]["minReplicas"] = min_replicas
+ new_containerapp["properties"]["template"]["scale"]["minReplicas"] = min_replicas
if max_replicas is not None:
- containerapp_def["properties"]["template"]["scale"]["maxReplicas"] = max_replicas
+ new_containerapp["properties"]["template"]["scale"]["maxReplicas"] = max_replicas
+
+ # Ingress
+ if update_map["ingress"]:
+ new_containerapp["properties"]["configuration"] = {} if "configuration" not in new_containerapp["properties"] else new_containerapp["properties"]["configuration"]
+ if target_port is not None or ingress is not None:
+ new_containerapp["properties"]["configuration"]["ingress"] = {}
+ if ingress:
+ new_containerapp["properties"]["configuration"]["ingress"]["external"] = ingress.lower() == "external"
+ if target_port:
+ new_containerapp["properties"]["configuration"]["ingress"]["targetPort"] = target_port
- _get_existing_secrets(cmd, resource_group_name, name, containerapp_def)
+ # Registry
+ if update_map["registry"]:
+ new_containerapp["properties"]["configuration"] = {} if "configuration" not in new_containerapp["properties"] else new_containerapp["properties"]["configuration"]
+ if "registries" in containerapp_def["properties"]["configuration"]:
+ new_containerapp["properties"]["configuration"]["registries"] = containerapp_def["properties"]["configuration"]["registries"]
+ if "registries" not in containerapp_def["properties"]["configuration"] or containerapp_def["properties"]["configuration"]["registries"] is None:
+ new_containerapp["properties"]["configuration"]["registries"] = []
- try:
- r = ContainerAppClient.create_or_update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_def, no_wait=no_wait)
+ registries_def = new_containerapp["properties"]["configuration"]["registries"]
- if "properties" in r and "provisioningState" in r["properties"] and r["properties"]["provisioningState"].lower() == "waiting" and not no_wait:
- logger.warning('Containerapp update in progress. Please monitor the update using `az containerapp show -n {} -g {}`'.format(name, resource_group_name))
+ _get_existing_secrets(cmd, resource_group_name, name, containerapp_def)
+ if "secrets" in containerapp_def["properties"]["configuration"] and containerapp_def["properties"]["configuration"]["secrets"]:
+ new_containerapp["properties"]["configuration"]["secrets"] = containerapp_def["properties"]["configuration"]["secrets"]
+ else:
+ new_containerapp["properties"]["configuration"]["secrets"] = []
+
+ if registry_server:
+ if not registry_pass or not registry_user:
+ if ACR_IMAGE_SUFFIX not in registry_server:
+ raise RequiredArgumentMissingError('Registry url is required if using Azure Container Registry, otherwise Registry username and password are required if using Dockerhub')
+ logger.warning('No credential was provided to access Azure Container Registry. Trying to look up...')
+ parsed = urlparse(registry_server)
+ registry_name = (parsed.netloc if parsed.scheme else parsed.path).split('.')[0]
+ registry_user, registry_pass, _ = _get_acr_cred(cmd.cli_ctx, registry_name)
+ # Check if updating existing registry
+ updating_existing_registry = False
+ for r in registries_def:
+ if r['server'].lower() == registry_server.lower():
+ updating_existing_registry = True
+ if registry_user:
+ r["username"] = registry_user
+ if registry_pass:
+ r["passwordSecretRef"] = store_as_secret_and_return_secret_ref(
+ new_containerapp["properties"]["configuration"]["secrets"],
+ r["username"],
+ r["server"],
+ registry_pass,
+ update_existing_secret=True,
+ disable_warnings=True)
+
+ # If not updating existing registry, add as new registry
+ if not updating_existing_registry:
+ registry = RegistryCredentialsModel
+ registry["server"] = registry_server
+ registry["username"] = registry_user
+ registry["passwordSecretRef"] = store_as_secret_and_return_secret_ref(
+ new_containerapp["properties"]["configuration"]["secrets"],
+ registry_user,
+ registry_server,
+ registry_pass,
+ update_existing_secret=True,
+ disable_warnings=True)
+
+ registries_def.append(registry)
+
+ try:
+ poller = client.begin_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=new_containerapp)
+ if not no_wait:
+ LongRunningOperation(cmd.cli_ctx)(poller) # doesn't return object, only status code since it uses patch api
+
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
return r
except Exception as e:
@@ -677,6 +552,7 @@ def update_containerapp_logic(cmd,
def update_containerapp(cmd,
+ client,
name,
resource_group_name,
yaml=None,
@@ -698,6 +574,7 @@ def update_containerapp(cmd,
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
return update_containerapp_logic(cmd,
+ client,
name,
resource_group_name,
yaml,
@@ -718,48 +595,49 @@ def update_containerapp(cmd,
no_wait)
-def show_containerapp(cmd, name, resource_group_name):
+def show_containerapp(cmd, client, name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
-
try:
- return ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ return client.get(resource_group_name=resource_group_name, container_app_name=name)
except CLIError as e:
handle_raw_exception(e)
-def list_containerapp(cmd, resource_group_name=None, managed_env=None):
+def list_containerapp(cmd, client, resource_group_name=None, managed_env=None):
+ from ._client_factory import cf_managedenvs
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
containerapps = []
if resource_group_name is None:
- containerapps = ContainerAppClient.list_by_subscription(cmd=cmd)
+ containerapps = client.list_by_subscription()
else:
- containerapps = ContainerAppClient.list_by_resource_group(cmd=cmd, resource_group_name=resource_group_name)
+ containerapps = client.list_by_resource_group(resource_group_name=resource_group_name)
if managed_env:
env_name = parse_resource_id(managed_env)["name"].lower()
if "resource_group" in parse_resource_id(managed_env):
- ManagedEnvironmentClient.show(cmd, parse_resource_id(managed_env)["resource_group"], parse_resource_id(managed_env)["name"])
- containerapps = [c for c in containerapps if c["properties"]["managedEnvironmentId"].lower() == managed_env.lower()]
+ cf_managedenvs(cmd.cli_ctx).get(resource_group_name=parse_resource_id(managed_env)["resource_group"], environment_name=parse_resource_id(managed_env)["name"])
+ containerapps = [c for c in containerapps if c.managed_environment_id.lower() == managed_env.lower()]
else:
- containerapps = [c for c in containerapps if parse_resource_id(c["properties"]["managedEnvironmentId"])["name"].lower() == env_name]
+ containerapps = [c for c in containerapps if parse_resource_id(c.managed_environment_id)["name"].lower() == env_name]
return containerapps
except CLIError as e:
handle_raw_exception(e)
-def delete_containerapp(cmd, name, resource_group_name, no_wait=False):
+def delete_containerapp(cmd, client, name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
- return ContainerAppClient.delete(cmd=cmd, name=name, resource_group_name=resource_group_name, no_wait=no_wait)
+ return client.begin_delete(resource_group_name=resource_group_name, container_app_name=name)
except CLIError as e:
handle_raw_exception(e)
def create_managed_environment(cmd,
+ client,
name,
resource_group_name,
logs_customer_id=None,
@@ -797,51 +675,26 @@ def create_managed_environment(cmd,
if logs_customer_id is None or logs_key is None:
logs_customer_id, logs_key = _generate_log_analytics_if_not_provided(cmd, logs_customer_id, logs_key, location, resource_group_name)
- log_analytics_config_def = LogAnalyticsConfigurationModel
- log_analytics_config_def["customerId"] = logs_customer_id
- log_analytics_config_def["sharedKey"] = logs_key
-
- app_logs_config_def = AppLogsConfigurationModel
- app_logs_config_def["destination"] = "log-analytics"
- app_logs_config_def["logAnalyticsConfiguration"] = log_analytics_config_def
-
- managed_env_def = ManagedEnvironmentModel
- managed_env_def["location"] = location
- managed_env_def["properties"]["appLogsConfiguration"] = app_logs_config_def
- managed_env_def["tags"] = tags
- managed_env_def["properties"]["zoneRedundant"] = zone_redundant
+ from azure.mgmt.appcontainers.models import LogAnalyticsConfiguration, AppLogsConfiguration, ManagedEnvironment, VnetConfiguration
- if instrumentation_key is not None:
- managed_env_def["properties"]["daprAIInstrumentationKey"] = instrumentation_key
+ log_analytics_config_def = LogAnalyticsConfiguration(customer_id=logs_customer_id, shared_key=logs_key)
- if infrastructure_subnet_resource_id or docker_bridge_cidr or platform_reserved_cidr or platform_reserved_dns_ip:
- vnet_config_def = VnetConfigurationModel
+ app_logs_config_def = AppLogsConfiguration(destination="log-analytics", log_analytics_configuration=log_analytics_config_def)
- if infrastructure_subnet_resource_id is not None:
- vnet_config_def["infrastructureSubnetId"] = infrastructure_subnet_resource_id
-
- if docker_bridge_cidr is not None:
- vnet_config_def["dockerBridgeCidr"] = docker_bridge_cidr
-
- if platform_reserved_cidr is not None:
- vnet_config_def["platformReservedCidr"] = platform_reserved_cidr
-
- if platform_reserved_dns_ip is not None:
- vnet_config_def["platformReservedDnsIP"] = platform_reserved_dns_ip
-
- managed_env_def["properties"]["vnetConfiguration"] = vnet_config_def
+ vnet_config_def = VnetConfiguration(internal = internal_only, infrastructure_subnet_id = infrastructure_subnet_resource_id, docker_bridge_cidr=docker_bridge_cidr, platform_reserved_cidr=platform_reserved_cidr, platform_reserved_dns_ip=platform_reserved_dns_ip)
if internal_only:
if not infrastructure_subnet_resource_id:
raise ValidationError('Infrastructure subnet resource ID needs to be supplied for internal only environments.')
- managed_env_def["properties"]["vnetConfiguration"]["internal"] = True
- try:
- r = ManagedEnvironmentClient.create(
- cmd=cmd, resource_group_name=resource_group_name, name=name, managed_environment_envelope=managed_env_def, no_wait=no_wait)
+ managed_env_def = ManagedEnvironment(location=location, app_logs_configuration=app_logs_config_def, tags=tags, zone_redundant=zone_redundant, dapr_ai_instrumentation_key=instrumentation_key, vnet_configuration=vnet_config_def)
- if "properties" in r and "provisioningState" in r["properties"] and r["properties"]["provisioningState"].lower() == "waiting" and not no_wait:
- not disable_warnings and logger.warning('Containerapp environment creation in progress. Please monitor the creation using `az containerapp env show -n {} -g {}`'.format(name, resource_group_name))
+ try:
+ poller = client.begin_create_or_update(resource_group_name=resource_group_name, environment_name=name, environment_envelope=managed_env_def)
+ if not no_wait:
+ r = LongRunningOperation(cmd.cli_ctx)(poller)
+ else:
+ r = client.get(resource_group_name=resource_group_name, environment_name=name)
not disable_warnings and logger.warning("\nContainer Apps environment created. To deploy a container app, use: az containerapp create --help\n")
@@ -851,6 +704,7 @@ def create_managed_environment(cmd,
def update_managed_environment(cmd,
+ client,
name,
resource_group_name,
tags=None,
@@ -858,46 +712,46 @@ def update_managed_environment(cmd,
raise CLIInternalError('Containerapp env update is not yet supported.')
-def show_managed_environment(cmd, name, resource_group_name):
+def show_managed_environment(cmd, client, name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
- return ManagedEnvironmentClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ return client.get(resource_group_name=resource_group_name, environment_name=name)
except CLIError as e:
handle_raw_exception(e)
-def list_managed_environments(cmd, resource_group_name=None):
+def list_managed_environments(cmd, client, resource_group_name=None):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
managed_envs = []
if resource_group_name is None:
- managed_envs = ManagedEnvironmentClient.list_by_subscription(cmd=cmd)
+ managed_envs = client.list_by_subscription()
else:
- managed_envs = ManagedEnvironmentClient.list_by_resource_group(cmd=cmd, resource_group_name=resource_group_name)
+ managed_envs = client.list_by_resource_group(resource_group_name=resource_group_name)
return managed_envs
except CLIError as e:
handle_raw_exception(e)
-def delete_managed_environment(cmd, name, resource_group_name, no_wait=False):
+def delete_managed_environment(cmd, client, name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
- return ManagedEnvironmentClient.delete(cmd=cmd, name=name, resource_group_name=resource_group_name, no_wait=no_wait)
+ return client.begin_delete(environment_name=name, resource_group_name=resource_group_name)
except CLIError as e:
handle_raw_exception(e)
-def assign_managed_identity(cmd, name, resource_group_name, system_assigned=False, user_assigned=None, no_wait=False):
+def assign_managed_identity(cmd, client, name, resource_group_name, system_assigned=False, user_assigned=None, no_wait=False):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
containerapp_def = None
# Get containerapp properties of CA we are updating
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
@@ -906,17 +760,18 @@ def assign_managed_identity(cmd, name, resource_group_name, system_assigned=Fals
_get_existing_secrets(cmd, resource_group_name, name, containerapp_def)
set_managed_identity(cmd, resource_group_name, containerapp_def, system_assigned, user_assigned)
-
try:
- r = ContainerAppClient.create_or_update(cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_def, no_wait=no_wait)
- # If identity is not returned, do nothing
- return r["identity"]
-
+ poller = client.begin_create_or_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_def)
+ if not no_wait:
+ r = LongRunningOperation(cmd.cli_ctx)(poller)
+ else:
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ return r.identity
except Exception as e:
handle_raw_exception(e)
-def remove_managed_identity(cmd, name, resource_group_name, system_assigned=False, user_assigned=None, no_wait=False):
+def remove_managed_identity(cmd, client, name, resource_group_name, system_assigned=False, user_assigned=None, no_wait=False):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
remove_system_identity = system_assigned
@@ -933,7 +788,7 @@ def remove_managed_identity(cmd, name, resource_group_name, system_assigned=Fals
containerapp_def = None
# Get containerapp properties of CA we are updating
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
@@ -991,27 +846,25 @@ def remove_managed_identity(cmd, name, resource_group_name, system_assigned=Fals
containerapp_def["identity"]["type"] = ("None" if containerapp_def["identity"]["type"] == "UserAssigned" else "SystemAssigned")
try:
- r = ContainerAppClient.create_or_update(cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_def, no_wait=no_wait)
- return r["identity"]
+ poller = client.begin_create_or_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_def)
+ if not no_wait:
+ r = LongRunningOperation(cmd.cli_ctx)(poller)
+ else:
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ return r.identity
except Exception as e:
handle_raw_exception(e)
-def show_managed_identity(cmd, name, resource_group_name):
+def show_managed_identity(cmd, client, name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
- r = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
- except CLIError as e:
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ return r.identity
+ except CLIInternalError as e:
handle_raw_exception(e)
- try:
- return r["identity"]
- except:
- r["identity"] = {}
- r["identity"]["type"] = "None"
- return r["identity"]
-
def _validate_github(repo, branch, token):
from github import Github, GithubException
@@ -1201,52 +1054,62 @@ def delete_github_action(cmd, name, resource_group_name, token=None, login_with_
handle_raw_exception(e)
-def list_revisions(cmd, name, resource_group_name, all=False):
+def list_revisions(cmd, client, name, resource_group_name, all=False):
+ _validate_subscription_registered(cmd, CONTAINER_APPS_RP)
+
try:
- revision_list = ContainerAppClient.list_revisions(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ revision_list = client.list_revisions(resource_group_name=resource_group_name, container_app_name=name)
if all:
return revision_list
- return [r for r in revision_list if r["properties"]["active"]]
+ return [r for r in revision_list if r.active]
except CLIError as e:
handle_raw_exception(e)
-def show_revision(cmd, resource_group_name, revision_name, name=None):
+def show_revision(cmd, client, resource_group_name, revision_name, name=None):
+ _validate_subscription_registered(cmd, CONTAINER_APPS_RP)
+
if not name:
name = _get_app_from_revision(revision_name)
try:
- return ContainerAppClient.show_revision(cmd=cmd, resource_group_name=resource_group_name, container_app_name=name, name=revision_name)
+ return client.get_revision(resource_group_name=resource_group_name, container_app_name=name, revision_name=revision_name)
except CLIError as e:
handle_raw_exception(e)
-def restart_revision(cmd, resource_group_name, revision_name, name=None):
+def restart_revision(cmd, client, resource_group_name, revision_name, name=None):
+ _validate_subscription_registered(cmd, CONTAINER_APPS_RP)
+
if not name:
name = _get_app_from_revision(revision_name)
try:
- return ContainerAppClient.restart_revision(cmd=cmd, resource_group_name=resource_group_name, container_app_name=name, name=revision_name)
+ return client.restart_revision(resource_group_name=resource_group_name, container_app_name=name, revision_name=revision_name)
except CLIError as e:
handle_raw_exception(e)
-def activate_revision(cmd, resource_group_name, revision_name, name=None):
+def activate_revision(cmd, client, resource_group_name, revision_name, name=None):
+ _validate_subscription_registered(cmd, CONTAINER_APPS_RP)
+
if not name:
name = _get_app_from_revision(revision_name)
try:
- return ContainerAppClient.activate_revision(cmd=cmd, resource_group_name=resource_group_name, container_app_name=name, name=revision_name)
+ return client.activate_revision(resource_group_name=resource_group_name, container_app_name=name, revision_name=revision_name)
except CLIError as e:
handle_raw_exception(e)
-def deactivate_revision(cmd, resource_group_name, revision_name, name=None):
+def deactivate_revision(cmd, client, resource_group_name, revision_name, name=None):
+ _validate_subscription_registered(cmd, CONTAINER_APPS_RP)
+
if not name:
name = _get_app_from_revision(revision_name)
try:
- return ContainerAppClient.deactivate_revision(cmd=cmd, resource_group_name=resource_group_name, container_app_name=name, name=revision_name)
+ return client.deactivate_revision(resource_group_name=resource_group_name, container_app_name=name, revision_name=revision_name)
except CLIError as e:
handle_raw_exception(e)
@@ -1302,12 +1165,12 @@ def copy_revision(cmd,
from_revision)
-def set_revision_mode(cmd, resource_group_name, name, mode, no_wait=False):
+def set_revision_mode(cmd, client, resource_group_name, name, mode, no_wait=False):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
@@ -1319,14 +1182,17 @@ def set_revision_mode(cmd, resource_group_name, name, mode, no_wait=False):
_get_existing_secrets(cmd, resource_group_name, name, containerapp_def)
try:
- r = ContainerAppClient.create_or_update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_def, no_wait=no_wait)
- return r["properties"]["configuration"]["activeRevisionsMode"]
+ poller = client.begin_create_or_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_def)
+ if not no_wait:
+ r = LongRunningOperation(cmd.cli_ctx)(poller)
+ else:
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ return r.configuration.active_revisions_mode
except Exception as e:
handle_raw_exception(e)
-def add_revision_label(cmd, resource_group_name, revision, label, name=None, no_wait=False, yes=False):
+def add_revision_label(cmd, client, resource_group_name, revision, label, name=None, yes=False, no_wait=False):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
if not name:
@@ -1334,7 +1200,7 @@ def add_revision_label(cmd, resource_group_name, revision, label, name=None, no_
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
@@ -1383,14 +1249,16 @@ def add_revision_label(cmd, resource_group_name, revision, label, name=None, no_
containerapp_patch_def['properties']['configuration']['ingress']['traffic'] = traffic_weight
try:
- r = ContainerAppClient.update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_patch_def, no_wait=no_wait)
- return r['properties']['configuration']['ingress']['traffic']
+ poller = client.begin_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_patch_def)
+ if not no_wait:
+ LongRunningOperation(cmd.cli_ctx)(poller)
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ return r.configuration.ingress.traffic
except Exception as e:
handle_raw_exception(e)
-def swap_revision_label(cmd, name, resource_group_name, source_label, target_label, no_wait=False):
+def swap_revision_label(cmd, client, name, resource_group_name, source_label, target_label, no_wait=False):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
if source_label == target_label:
@@ -1398,7 +1266,7 @@ def swap_revision_label(cmd, name, resource_group_name, source_label, target_lab
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
@@ -1437,19 +1305,21 @@ def swap_revision_label(cmd, name, resource_group_name, source_label, target_lab
containerapp_patch_def['properties']['configuration']['ingress']['traffic'] = traffic_weight
try:
- r = ContainerAppClient.update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_patch_def, no_wait=no_wait)
- return r['properties']['configuration']['ingress']['traffic']
+ poller = client.begin_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_patch_def)
+ if not no_wait:
+ LongRunningOperation(cmd.cli_ctx)(poller)
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ return r.configuration.ingress.traffic
except Exception as e:
handle_raw_exception(e)
-def remove_revision_label(cmd, resource_group_name, name, label, no_wait=False):
+def remove_revision_label(cmd, client, resource_group_name, name, label, no_wait=False):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
@@ -1478,19 +1348,21 @@ def remove_revision_label(cmd, resource_group_name, name, label, no_wait=False):
containerapp_patch_def['properties']['configuration']['ingress']['traffic'] = traffic_weight
try:
- r = ContainerAppClient.update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_patch_def, no_wait=no_wait)
- return r['properties']['configuration']['ingress']['traffic']
+ poller = client.begin_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_patch_def)
+ if not no_wait:
+ LongRunningOperation(cmd.cli_ctx)(poller)
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ return r.configuration.ingress.traffic
except Exception as e:
handle_raw_exception(e)
-def show_ingress(cmd, name, resource_group_name):
+def show_ingress(cmd, client, name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name)
except:
pass
@@ -1498,17 +1370,17 @@ def show_ingress(cmd, name, resource_group_name):
raise ResourceNotFoundError("The containerapp '{}' does not exist".format(name))
try:
- return containerapp_def["properties"]["configuration"]["ingress"]
+ return containerapp_def.configuration.ingress
except Exception as e:
raise ValidationError("The containerapp '{}' does not have ingress enabled.".format(name)) from e
-def enable_ingress(cmd, name, resource_group_name, type, target_port, transport="auto", allow_insecure=False, disable_warnings=False, no_wait=False): # pylint: disable=redefined-builtin
+def enable_ingress(cmd, client, name, resource_group_name, type, target_port, transport="auto", allow_insecure=False, disable_warnings=False, no_wait=False): # pylint: disable=redefined-builtin
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
@@ -1522,33 +1394,34 @@ def enable_ingress(cmd, name, resource_group_name, type, target_port, transport=
elif type.lower() == "external":
external_ingress = True
+ from azure.mgmt.appcontainers.models import Ingress
+
ingress_def = None
if target_port is not None and type is not None:
- ingress_def = IngressModel
- ingress_def["external"] = external_ingress
- ingress_def["targetPort"] = target_port
- ingress_def["transport"] = transport
- ingress_def["allowInsecure"] = allow_insecure
+ ingress_def = Ingress(external=external_ingress, target_port=target_port, transport=transport, allow_insecure=allow_insecure)
containerapp_def["properties"]["configuration"]["ingress"] = ingress_def
_get_existing_secrets(cmd, resource_group_name, name, containerapp_def)
try:
- r = ContainerAppClient.create_or_update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_def, no_wait=no_wait)
- not disable_warnings and logger.warning("\nIngress enabled. Access your app at https://{}/\n".format(r["properties"]["configuration"]["ingress"]["fqdn"]))
- return r["properties"]["configuration"]["ingress"]
+ poller = client.begin_create_or_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_def)
+ if not no_wait:
+ r = LongRunningOperation(cmd.cli_ctx)(poller)
+ else:
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ not disable_warnings and logger.warning("\nIngress enabled. Access your app at https://{}/\n".format(r.configuration.ingress.fqdn))
+ return r
except Exception as e:
handle_raw_exception(e)
-def disable_ingress(cmd, name, resource_group_name, no_wait=False):
+def disable_ingress(cmd, client, name, resource_group_name, no_wait=False):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
@@ -1560,22 +1433,23 @@ def disable_ingress(cmd, name, resource_group_name, no_wait=False):
_get_existing_secrets(cmd, resource_group_name, name, containerapp_def)
try:
- ContainerAppClient.create_or_update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_def, no_wait=no_wait)
+ poller = client.begin_create_or_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_def)
+ if not no_wait:
+ LongRunningOperation(cmd.cli_ctx)(poller)
logger.warning("Ingress has been disabled successfully.")
return
except Exception as e:
handle_raw_exception(e)
-def set_ingress_traffic(cmd, name, resource_group_name, label_weights=None, revision_weights=None, no_wait=False):
+def set_ingress_traffic(cmd, client, name, resource_group_name, label_weights=None, revision_weights=None, no_wait=False):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
if not label_weights and not revision_weights:
raise ValidationError("Must specify either --label-weight or --revision-weight.")
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name).serialize()
except:
pass
@@ -1616,19 +1490,22 @@ def set_ingress_traffic(cmd, name, resource_group_name, label_weights=None, revi
containerapp_patch_def['properties']['configuration']['ingress']['traffic'] = containerapp_def["properties"]["configuration"]["ingress"]["traffic"]
try:
- r = ContainerAppClient.update(
- cmd=cmd, resource_group_name=resource_group_name, name=name, container_app_envelope=containerapp_patch_def, no_wait=no_wait)
- return r['properties']['configuration']['ingress']['traffic']
+ poller = client.begin_update(resource_group_name=resource_group_name, container_app_name=name, container_app_envelope=containerapp_patch_def)
+ if not no_wait:
+ LongRunningOperation(cmd.cli_ctx)(poller) # doesn't return object, only status code since it uses patch api
+
+ r = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ return r.configuration.ingress.traffic
except Exception as e:
handle_raw_exception(e)
-def show_ingress_traffic(cmd, name, resource_group_name):
+def show_ingress_traffic(cmd, client, name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
containerapp_def = None
try:
- containerapp_def = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name)
+ containerapp_def = client.get(resource_group_name=resource_group_name, container_app_name=name)
except:
pass
@@ -1636,7 +1513,7 @@ def show_ingress_traffic(cmd, name, resource_group_name):
raise ResourceNotFoundError("The containerapp '{}' does not exist".format(name))
try:
- return containerapp_def["properties"]["configuration"]["ingress"]["traffic"]
+ return containerapp_def.configuration.ingress.traffic
except Exception as e:
raise ValidationError("Ingress must be enabled to show ingress traffic. Try running `az containerapp ingress -h` for more info.") from e
@@ -2020,89 +1897,59 @@ def disable_dapr(cmd, name, resource_group_name, no_wait=False):
handle_raw_exception(e)
-def list_dapr_components(cmd, resource_group_name, environment_name):
+def list_dapr_components(cmd, client, resource_group_name, environment_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
- return DaprComponentClient.list(cmd, resource_group_name, environment_name)
+ return client.list(resource_group_name=resource_group_name, environment_name=environment_name)
-def show_dapr_component(cmd, resource_group_name, dapr_component_name, environment_name):
+def show_dapr_component(cmd, client, resource_group_name, dapr_component_name, environment_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
- return DaprComponentClient.show(cmd, resource_group_name, environment_name, name=dapr_component_name)
+ return client.get(resource_group_name=resource_group_name, environment_name=environment_name, component_name=dapr_component_name)
-def create_or_update_dapr_component(cmd, resource_group_name, environment_name, dapr_component_name, yaml):
+def create_or_update_dapr_component(cmd, client, resource_group_name, environment_name, dapr_component_name, yaml):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
- yaml_containerapp = load_yaml_file(yaml)
- if type(yaml_containerapp) != dict: # pylint: disable=unidiomatic-typecheck
+ yaml_component = load_yaml_file(yaml)
+ if type(yaml_component) != dict: # pylint: disable=unidiomatic-typecheck
raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapps YAML spec.')
- # Deserialize the yaml into a DaprComponent object. Need this since we're not using SDK
- daprcomponent_def = None
try:
- deserializer = create_deserializer()
-
- daprcomponent_def = deserializer('DaprComponent', yaml_containerapp)
- except DeserializationError as ex:
- raise ValidationError('Invalid YAML provided. Please see https://aka.ms/azure-container-apps-yaml for a valid containerapps YAML spec.') from ex
-
- daprcomponent_def = _convert_object_from_snake_to_camel_case(_object_to_dict(daprcomponent_def))
-
- # Remove "additionalProperties" and read-only attributes that are introduced in the deserialization. Need this since we're not using SDK
- _remove_additional_attributes(daprcomponent_def)
- _remove_dapr_readonly_attributes(daprcomponent_def)
-
- if not daprcomponent_def["ignoreErrors"]:
- daprcomponent_def["ignoreErrors"] = False
-
- dapr_component_envelope = {}
-
- dapr_component_envelope["properties"] = daprcomponent_def
-
- try:
- r = DaprComponentClient.create_or_update(cmd, resource_group_name=resource_group_name, environment_name=environment_name, dapr_component_envelope=dapr_component_envelope, name=dapr_component_name)
- return r
+ return client.create_or_update(resource_group_name=resource_group_name, environment_name=environment_name, dapr_component_envelope=yaml_component, component_name=dapr_component_name)
except Exception as e:
handle_raw_exception(e)
-def remove_dapr_component(cmd, resource_group_name, dapr_component_name, environment_name):
+def remove_dapr_component(cmd, client, resource_group_name, dapr_component_name, environment_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
- DaprComponentClient.show(cmd, resource_group_name, environment_name, name=dapr_component_name)
+ client.get(resource_group_name=resource_group_name, environment_name=environment_name, component_name=dapr_component_name)
except Exception as e:
raise ResourceNotFoundError("Dapr component not found.") from e
try:
- r = DaprComponentClient.delete(cmd, resource_group_name, environment_name, name=dapr_component_name)
- logger.warning("Dapr componenet successfully deleted.")
- return r
+ return client.delete(resource_group_name=resource_group_name, environment_name=environment_name, component_name=dapr_component_name)
except Exception as e:
handle_raw_exception(e)
-def list_replicas(cmd, resource_group_name, name, revision=None):
- app = ContainerAppClient.show(cmd, resource_group_name, name)
+def list_replicas(cmd, client, resource_group_name, name, revision=None):
+ from ._client_factory import cf_containerapps
+ app = cf_containerapps(cmd.cli_ctx).get(container_app_name=name, resource_group_name=resource_group_name)
if not revision:
- revision = app["properties"]["latestRevisionName"]
- return ContainerAppClient.list_replicas(cmd=cmd,
- resource_group_name=resource_group_name,
- container_app_name=name,
- revision_name=revision)
+ revision = app.latest_revision_name
+ return client.list_replicas(resource_group_name=resource_group_name, container_app_name=name, revision_name=revision)
-def get_replica(cmd, resource_group_name, name, replica, revision=None):
- app = ContainerAppClient.show(cmd, resource_group_name, name)
+def get_replica(cmd, client, resource_group_name, name, replica, revision=None):
+ from ._client_factory import cf_containerapps
+ app = cf_containerapps(cmd.cli_ctx).get(container_app_name=name, resource_group_name=resource_group_name)
if not revision:
- revision = app["properties"]["latestRevisionName"]
- return ContainerAppClient.get_replica(cmd=cmd,
- resource_group_name=resource_group_name,
- container_app_name=name,
- revision_name=revision,
- replica_name=replica)
+ revision = app.latest_revision_name
+ return client.get_replica(container_app_name=name, resource_group_name=resource_group_name, revision_name=revision, replica_name=replica)
def containerapp_ssh(cmd, resource_group_name, name, container=None, revision=None, replica=None, startup_command="sh"):
@@ -2162,11 +2009,11 @@ def stream_containerapp_logs(cmd, resource_group_name, name, container=None, rev
print(line.decode("utf-8").replace("\\u0022", "\u0022").replace("\\u001B", "\u001B").replace("\\u002B", "\u002B").replace("\\u0027", "\u0027"))
-def open_containerapp_in_browser(cmd, name, resource_group_name):
- app = ContainerAppClient.show(cmd, resource_group_name, name)
- url = safe_get(app, "properties", "configuration", "ingress", "fqdn")
- if not url:
+def open_containerapp_in_browser(cmd, client, name, resource_group_name):
+ app = client.get(resource_group_name=resource_group_name, container_app_name=name)
+ if not app.configuration.ingress or not app.configuration.ingress.fqdn:
raise ValidationError("Could not open in browser: no public URL for this app")
+ url = app.configuration.ingress.fqdn
if not url.startswith("http"):
url = f"http://{url}"
open_page_in_browser(url)
@@ -2265,141 +2112,19 @@ def containerapp_up_logic(cmd, resource_group_name, name, managed_env, image, en
except:
pass
- try:
- location = ManagedEnvironmentClient.show(cmd, resource_group_name, managed_env.split('/')[-1])["location"]
- except:
- pass
-
- ca_exists = False
if containerapp_def:
- ca_exists = True
-
- # When using repo, image is not passed, so we have to assign it a value (will be overwritten with gh-action)
- if image is None:
- image = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest"
-
- if not ca_exists:
- containerapp_def = None
- containerapp_def = ContainerAppModel
- containerapp_def["location"] = location
- containerapp_def["properties"]["managedEnvironmentId"] = managed_env
- containerapp_def["properties"]["configuration"] = ConfigurationModel
- else:
- # check provisioning state here instead of secrets so no error
- _get_existing_secrets(cmd, resource_group_name, name, containerapp_def)
-
- container = ContainerModel
- container["image"] = image
- container["name"] = name
-
- if env_vars:
- container["env"] = parse_env_var_flags(env_vars)
-
- external_ingress = None
- if ingress is not None:
- if ingress.lower() == "internal":
- external_ingress = False
- elif ingress.lower() == "external":
- external_ingress = True
-
- ingress_def = None
- if target_port is not None and ingress is not None:
- if ca_exists:
- ingress_def = containerapp_def["properties"]["configuration"]["ingress"]
- else:
- ingress_def = IngressModel
- ingress_def["external"] = external_ingress
- ingress_def["targetPort"] = target_port
- containerapp_def["properties"]["configuration"]["ingress"] = ingress_def
-
- # handle multi-container case
- if ca_exists:
- existing_containers = containerapp_def["properties"]["template"]["containers"]
- if len(existing_containers) == 0:
- # No idea how this would ever happen, failed provisioning maybe?
- containerapp_def["properties"]["template"] = TemplateModel
- containerapp_def["properties"]["template"]["containers"] = [container]
- if len(existing_containers) == 1:
- # Assume they want it updated
- existing_containers[0] = container
- if len(existing_containers) > 1:
- # Assume they want to update, if not existing just add it
- existing_containers = [x for x in existing_containers if x['name'].lower() == name.lower()]
- if len(existing_containers) == 1:
- existing_containers[0] = container
- else:
- existing_containers.append(container)
- containerapp_def["properties"]["template"]["containers"] = existing_containers
- else:
- containerapp_def["properties"]["template"] = TemplateModel
- containerapp_def["properties"]["template"]["containers"] = [container]
-
- registries_def = None
- registry = None
-
- if "secrets" not in containerapp_def["properties"]["configuration"] or containerapp_def["properties"]["configuration"]["secrets"] is None:
- containerapp_def["properties"]["configuration"]["secrets"] = []
-
- if "registries" not in containerapp_def["properties"]["configuration"] or containerapp_def["properties"]["configuration"]["registries"] is None:
- containerapp_def["properties"]["configuration"]["registries"] = []
-
- registries_def = containerapp_def["properties"]["configuration"]["registries"]
+ return update_containerapp_logic(cmd=cmd, name=name, resource_group_name=resource_group_name, image=image, replace_env_vars=env_vars, ingress=ingress, target_port=target_port, registry_server=registry_server, registry_user=registry_user, registry_pass=registry_pass, container_name=name) # need ingress, target port, registry stuff to work here
+ return create_containerapp(cmd=cmd, name=name, resource_group_name=resource_group_name, managed_env=managed_env, image=image, env_vars=env_vars, ingress=ingress, target_port=target_port, registry_server=registry_server, registry_user=registry_user, registry_pass=registry_pass)
- if registry_server:
- if not registry_pass or not registry_user:
- if ACR_IMAGE_SUFFIX not in registry_server:
- raise RequiredArgumentMissingError('Registry url is required if using Azure Container Registry, otherwise Registry username and password are required if using Dockerhub')
- logger.warning('No credential was provided to access Azure Container Registry. Trying to look up...')
- parsed = urlparse(registry_server)
- registry_name = (parsed.netloc if parsed.scheme else parsed.path).split('.')[0]
- registry_user, registry_pass, _ = _get_acr_cred(cmd.cli_ctx, registry_name)
- # Check if updating existing registry
- updating_existing_registry = False
- for r in registries_def:
- if r['server'].lower() == registry_server.lower():
- updating_existing_registry = True
- if registry_user:
- r["username"] = registry_user
- if registry_pass:
- r["passwordSecretRef"] = store_as_secret_and_return_secret_ref(
- containerapp_def["properties"]["configuration"]["secrets"],
- r["username"],
- r["server"],
- registry_pass,
- update_existing_secret=True,
- disable_warnings=True)
-
- # If not updating existing registry, add as new registry
- if not updating_existing_registry:
- registry = RegistryCredentialsModel
- registry["server"] = registry_server
- registry["username"] = registry_user
- registry["passwordSecretRef"] = store_as_secret_and_return_secret_ref(
- containerapp_def["properties"]["configuration"]["secrets"],
- registry_user,
- registry_server,
- registry_pass,
- update_existing_secret=True,
- disable_warnings=True)
-
- registries_def.append(registry)
-
- try:
- if ca_exists:
- return ContainerAppClient.update(cmd, resource_group_name, name, containerapp_def)
- return ContainerAppClient.create_or_update(cmd, resource_group_name, name, containerapp_def)
- except Exception as e:
- handle_raw_exception(e)
-
-def list_certificates(cmd, name, resource_group_name, location=None, certificate=None, thumbprint=None):
+def list_certificates(cmd, client, name, resource_group_name, location=None, certificate=None, thumbprint=None):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
def location_match(c):
- return c["location"] == location or not location
+ return c.location == location or not location
def thumbprint_match(c):
- return c["properties"]["thumbprint"] == thumbprint or not thumbprint
+ return c.thumbprint == thumbprint or not thumbprint
def both_match(c):
return location_match(c) and thumbprint_match(c)
@@ -2410,19 +2135,20 @@ def both_match(c):
else:
certificate_name = certificate
try:
- r = ManagedEnvironmentClient.show_certificate(cmd, resource_group_name, name, certificate_name)
+
+ r = client.get(resource_group_name=resource_group_name, environment_name=name, certificate_name=certificate_name)
return [r] if both_match(r) else []
except Exception as e:
handle_raw_exception(e)
else:
try:
- r = ManagedEnvironmentClient.list_certificates(cmd, resource_group_name, name)
+ r = client.list(resource_group_name=resource_group_name, environment_name=name)
return list(filter(both_match, r))
except Exception as e:
handle_raw_exception(e)
-def upload_certificate(cmd, name, resource_group_name, certificate_file, certificate_name=None, certificate_password=None, location=None, prompt=False):
+def upload_certificate(cmd, client, name, resource_group_name, certificate_file, certificate_name=None, certificate_password=None, location=None, prompt=False):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
blob, thumbprint = load_cert_file(certificate_file, certificate_password)
@@ -2448,30 +2174,30 @@ def upload_certificate(cmd, name, resource_group_name, certificate_file, certifi
while not cert_name:
random_name = generate_randomized_cert_name(thumbprint, name, resource_group_name)
check_result = check_cert_name_availability(cmd, resource_group_name, name, random_name)
- if check_result["nameAvailable"]:
+ if check_result.name_available:
cert_name = random_name
- elif not check_result["nameAvailable"] and (check_result["reason"] == NAME_INVALID):
- raise ValidationError(check_result["message"])
-
- certificate = ContainerAppCertificateEnvelopeModel
- certificate["properties"]["password"] = certificate_password
- certificate["properties"]["value"] = blob
- certificate["location"] = location
- if not certificate["location"]:
+ elif not check_result.name_available and (check_result.reason == NAME_INVALID):
+ raise ValidationError(check_result.message)
+
+ from azure.mgmt.appcontainers.models import ContainerAppCertificateEnvelope
+
+ if not location:
try:
- managed_env = ManagedEnvironmentClient.show(cmd, resource_group_name, name)
- certificate["location"] = managed_env["location"]
+ from ._client_factory import cf_managedenvs
+ managed_env = cf_managedenvs(cmd.cli_ctx).get(resource_group_name=resource_group_name, environment_name=name)
+ location = managed_env.location
except Exception as e:
handle_raw_exception(e)
+ certificate_def = ContainerAppCertificateEnvelope(password=certificate_password, value=blob, location=location)
+
try:
- r = ManagedEnvironmentClient.create_or_update_certificate(cmd, resource_group_name, name, cert_name, certificate)
- return r
+ return client.create_or_update(resource_group_name=resource_group_name, environment_name=name, certificate_name=cert_name, certificate_envelope=certificate_def)
except Exception as e:
handle_raw_exception(e)
-def delete_certificate(cmd, resource_group_name, name, location=None, certificate=None, thumbprint=None):
+def delete_certificate(cmd, client, resource_group_name, name, location=None, certificate=None, thumbprint=None):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
if not certificate and not thumbprint:
@@ -2479,8 +2205,8 @@ def delete_certificate(cmd, resource_group_name, name, location=None, certificat
certs = list_certificates(cmd, name, resource_group_name, location, certificate, thumbprint)
for cert in certs:
try:
- ManagedEnvironmentClient.delete_certificate(cmd, resource_group_name, name, cert["name"])
- logger.warning('Successfully deleted certificate: {}'.format(cert["name"]))
+ client.delete_certificate(resource_group_name=resource_group_name, environment_name=name, certificate_name=cert.name)
+ logger.warning('Successfully deleted certificate: {}'.format(cert.name))
except Exception as e:
handle_raw_exception(e)
@@ -2567,25 +2293,25 @@ def delete_hostname(cmd, resource_group_name, name, hostname, location=None):
return r
-def show_storage(cmd, name, storage_name, resource_group_name):
+def show_storage(cmd, client, name, storage_name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
- return StorageClient.show(cmd, resource_group_name, name, storage_name)
+ return client.get(resource_group_name=resource_group_name, environment_name=name, storage_name=storage_name)
except CLIError as e:
handle_raw_exception(e)
-def list_storage(cmd, name, resource_group_name):
+def list_storage(cmd, client, name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
- return StorageClient.list(cmd, resource_group_name, name)
+ return client.list(resource_group_name=resource_group_name, environment_name=name)
except CLIError as e:
handle_raw_exception(e)
-def create_or_update_storage(cmd, storage_name, resource_group_name, name, azure_file_account_name, azure_file_share_name, azure_file_account_key, access_mode, no_wait=False): # pylint: disable=redefined-builtin
+def create_or_update_storage(cmd, client, storage_name, resource_group_name, name, azure_file_account_name, azure_file_share_name, azure_file_account_key, access_mode): # pylint: disable=redefined-builtin
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
if len(azure_file_share_name) < 3:
@@ -2597,33 +2323,29 @@ def create_or_update_storage(cmd, storage_name, resource_group_name, name, azure
r = None
try:
- r = StorageClient.show(cmd, resource_group_name, name, storage_name)
+ r = client.get(resource_group_name=resource_group_name, environment_name=name, storage_name=storage_name)
except:
pass
if r:
logger.warning("Only AzureFile account keys can be updated. In order to change the AzureFile share name or account name, please delete this storage and create a new one.")
- storage_def = AzureFilePropertiesModel
- storage_def["accountKey"] = azure_file_account_key
- storage_def["accountName"] = azure_file_account_name
- storage_def["shareName"] = azure_file_share_name
- storage_def["accessMode"] = access_mode
- storage_envelope = {}
- storage_envelope["properties"] = {}
- storage_envelope["properties"]["azureFile"] = storage_def
+ from azure.mgmt.appcontainers.models import AzureFileProperties, ManagedEnvironmentStorageProperties, ManagedEnvironmentStorage
+
+ storage_def = AzureFileProperties(account_key=azure_file_account_key, account_name=azure_file_account_name, share_name=azure_file_share_name, access_mode=access_mode)
+ storage_envelope = ManagedEnvironmentStorage(properties=ManagedEnvironmentStorageProperties(azure_file=storage_def))
try:
- return StorageClient.create_or_update(cmd, resource_group_name, name, storage_name, storage_envelope, no_wait)
+ return client.create_or_update(resource_group_name=resource_group_name, environment_name=name, storage_name=storage_name, storage_envelope=storage_envelope)
except CLIError as e:
handle_raw_exception(e)
-def remove_storage(cmd, storage_name, name, resource_group_name, no_wait=False):
+def remove_storage(cmd, client, storage_name, name, resource_group_name):
_validate_subscription_registered(cmd, CONTAINER_APPS_RP)
try:
- return StorageClient.delete(cmd, resource_group_name, name, storage_name, no_wait)
+ return client.delete(resource_group_name=resource_group_name, environment_name=name, storage_name=storage_name)
except CLIError as e:
handle_raw_exception(e)
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_custom_domains_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_custom_domains_e2e.yaml
new file mode 100644
index 00000000000..000a6cb7943
--- /dev/null
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_custom_domains_e2e.yaml
@@ -0,0 +1,4658 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T20:43:09Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '314'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:43:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westeurope", "properties": {"sku": {"name": "PerGB2018"},
+ "retentionInDays": 30, "workspaceCapping": {}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '119'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"e967fe4a-a248-4821-8187-ab85a800e912","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-22T20:43:18.2513085Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-23T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-22T20:43:18.2513085Z","modifiedDate":"2022-06-22T20:43:18.2513085Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '855'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:43:20 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"e967fe4a-a248-4821-8187-ab85a800e912","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-22T20:43:18.2513085Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-23T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-22T20:43:18.2513085Z","modifiedDate":"2022-06-22T20:43:18.2513085Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '856'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:43:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace get-shared-keys
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01
+ response:
+ body:
+ string: '{"primarySharedKey":"9m2FAPL+H8fIhX6liUc9SiqJOjy+gok18EThh0OJQ+iEtZ5FACYoY9alYmDc7lomNArAhiRWd9xxFvj7ix+ymA==","secondarySharedKey":"9FvqauUET5o+B6Lkejzge8GNAHnIssSTvtmTIZ//RveH7U8Vr0x0a6MbYVnYPAh1wDPsMjfni4ZIJeLlIRzUtg=="}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:43:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T20:43:09Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '314'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:43:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:43:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:43:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westeurope", "properties": {"vnetConfiguration": {"internal":
+ false}, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration":
+ {"customerId": "e967fe4a-a248-4821-8187-ab85a800e912", "sharedKey": "9m2FAPL+H8fIhX6liUc9SiqJOjy+gok18EThh0OJQ+iEtZ5FACYoY9alYmDc7lomNArAhiRWd9xxFvj7ix+ymA=="}},
+ "zoneRedundant": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '356'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"westeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:44:02.6286177Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:44:02.6286177Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"livelyforest-bb132ae6.westeurope.azurecontainerapps.io","staticIp":"20.23.176.166","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e967fe4a-a248-4821-8187-ab85a800e912"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/79405966-908d-4b21-b2b0-76604ce4ff79?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '806'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:44:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/79405966-908d-4b21-b2b0-76604ce4ff79?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/79405966-908d-4b21-b2b0-76604ce4ff79","name":"79405966-908d-4b21-b2b0-76604ce4ff79","status":"InProgress","startTime":"2022-06-22T20:44:04.6414184"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '288'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:44:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/79405966-908d-4b21-b2b0-76604ce4ff79?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/79405966-908d-4b21-b2b0-76604ce4ff79","name":"79405966-908d-4b21-b2b0-76604ce4ff79","status":"InProgress","startTime":"2022-06-22T20:44:04.6414184"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '288'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:44:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/79405966-908d-4b21-b2b0-76604ce4ff79?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/79405966-908d-4b21-b2b0-76604ce4ff79","name":"79405966-908d-4b21-b2b0-76604ce4ff79","status":"Succeeded","startTime":"2022-06-22T20:44:04.6414184"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '287'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:45:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"westeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:44:02.6286177","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:44:02.6286177"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyforest-bb132ae6.westeurope.azurecontainerapps.io","staticIp":"20.23.176.166","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e967fe4a-a248-4821-8187-ab85a800e912"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '806'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:45:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:45:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"westeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:44:02.6286177","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:44:02.6286177"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyforest-bb132ae6.westeurope.azurecontainerapps.io","staticIp":"20.23.176.166","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e967fe4a-a248-4821-8187-ab85a800e912"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '806'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:45:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment --ingress --target-port
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:45:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment --ingress --target-port
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"westeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:44:02.6286177","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:44:02.6286177"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyforest-bb132ae6.westeurope.azurecontainerapps.io","staticIp":"20.23.176.166","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e967fe4a-a248-4821-8187-ab85a800e912"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '806'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:45:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment --ingress --target-port
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:45:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westeurope", "identity": {"type": "None"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"ingress": {"external": true, "targetPort": 80, "transport":
+ "auto"}}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003"}]}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '473'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --environment --ingress --target-port
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:24.126955Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:24.126955Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.76.161.200","20.76.160.148","20.76.161.106"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.livelyforest-bb132ae6.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/c392a781-5470-4337-a8bc-0deef2eea5b8?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1408'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:45:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ 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 --environment --ingress --target-port
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/c392a781-5470-4337-a8bc-0deef2eea5b8?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/c392a781-5470-4337-a8bc-0deef2eea5b8","name":"c392a781-5470-4337-a8bc-0deef2eea5b8","status":"InProgress","startTime":"2022-06-22T20:45:25.0273913"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:45:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment --ingress --target-port
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/c392a781-5470-4337-a8bc-0deef2eea5b8?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/c392a781-5470-4337-a8bc-0deef2eea5b8","name":"c392a781-5470-4337-a8bc-0deef2eea5b8","status":"Succeeded","startTime":"2022-06-22T20:45:25.0273913"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment --ingress --target-port
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:24.126955","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:24.126955"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.76.161.200","20.76.160.148","20.76.161.106"],"latestRevisionName":"containerapp000003--8k2riv1","latestRevisionFqdn":"containerapp000003--8k2riv1.livelyforest-bb132ae6.westeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.livelyforest-bb132ae6.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1514'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T20:43:09Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '314'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:24.126955","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:24.126955"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.76.161.200","20.76.160.148","20.76.161.106"],"latestRevisionName":"containerapp000003--8k2riv1","latestRevisionFqdn":"containerapp000003--8k2riv1.livelyforest-bb132ae6.westeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.livelyforest-bb132ae6.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1514'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01
+ response:
+ body:
+ string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East
+ US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East
+ US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South
+ Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West
+ US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"displayName\":\"West
+ US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New
+ South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North
+ Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"displayName\":\"Sweden
+ Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK
+ South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West
+ Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central
+ US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South
+ Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central
+ India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong
+ Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo,
+ Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada
+ Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France
+ Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany
+ West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway
+ East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland
+ North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil
+ South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao
+ Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East
+ US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central
+ US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East
+ US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West
+ US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia
+ Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\",\"name\":\"singapore\",\"displayName\":\"Singapore\",\"regionalDisplayName\":\"Singapore\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South
+ Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United
+ Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United
+ Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United
+ States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstateseuap\",\"name\":\"unitedstateseuap\",\"displayName\":\"United
+ States EUAP\",\"regionalDisplayName\":\"United States EUAP\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North
+ Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West
+ US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio
+ India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE
+ North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central
+ US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West
+ Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South
+ Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape
+ Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia
+ Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia
+ Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan
+ West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\",\"name\":\"jioindiacentral\",\"displayName\":\"Jio
+ India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"79.08886\",\"latitude\":\"21.146633\",\"physicalLocation\":\"Nagpur\",\"pairedRegion\":[{\"name\":\"jioindiawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea
+ South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South
+ India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West
+ India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada
+ East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France
+ South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany
+ North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway
+ West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland
+ West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK
+ West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE
+ Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu
+ Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"displayName\":\"Brazil
+ Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}}]}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '28985'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01
+ response:
+ body:
+ string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East
+ US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East
+ US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South
+ Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West
+ US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"displayName\":\"West
+ US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New
+ South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North
+ Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"displayName\":\"Sweden
+ Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK
+ South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West
+ Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central
+ US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South
+ Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central
+ India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong
+ Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo,
+ Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada
+ Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France
+ Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany
+ West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway
+ East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland
+ North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil
+ South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao
+ Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East
+ US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central
+ US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East
+ US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West
+ US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia
+ Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\",\"name\":\"singapore\",\"displayName\":\"Singapore\",\"regionalDisplayName\":\"Singapore\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South
+ Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United
+ Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United
+ Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United
+ States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstateseuap\",\"name\":\"unitedstateseuap\",\"displayName\":\"United
+ States EUAP\",\"regionalDisplayName\":\"United States EUAP\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North
+ Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West
+ US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio
+ India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE
+ North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central
+ US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West
+ Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South
+ Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape
+ Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia
+ Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia
+ Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan
+ West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\",\"name\":\"jioindiacentral\",\"displayName\":\"Jio
+ India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"79.08886\",\"latitude\":\"21.146633\",\"physicalLocation\":\"Nagpur\",\"pairedRegion\":[{\"name\":\"jioindiawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea
+ South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South
+ India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West
+ India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada
+ East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France
+ South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany
+ North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway
+ West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland
+ West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK
+ West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE
+ Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu
+ Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"displayName\":\"Brazil
+ Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}}]}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '28985'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:24.126955","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:24.126955"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.76.161.200","20.76.160.148","20.76.161.106"],"latestRevisionName":"containerapp000003--8k2riv1","latestRevisionFqdn":"containerapp000003--8k2riv1.livelyforest-bb132ae6.westeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.livelyforest-bb132ae6.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1514'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01
+ response:
+ body:
+ string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East
+ US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East
+ US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South
+ Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West
+ US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"displayName\":\"West
+ US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New
+ South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North
+ Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"displayName\":\"Sweden
+ Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK
+ South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West
+ Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central
+ US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South
+ Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central
+ India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong
+ Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo,
+ Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada
+ Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France
+ Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany
+ West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway
+ East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland
+ North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil
+ South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao
+ Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East
+ US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central
+ US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East
+ US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West
+ US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia
+ Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\",\"name\":\"singapore\",\"displayName\":\"Singapore\",\"regionalDisplayName\":\"Singapore\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South
+ Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United
+ Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United
+ Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United
+ States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstateseuap\",\"name\":\"unitedstateseuap\",\"displayName\":\"United
+ States EUAP\",\"regionalDisplayName\":\"United States EUAP\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North
+ Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West
+ US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio
+ India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE
+ North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central
+ US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West
+ Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South
+ Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape
+ Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia
+ Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia
+ Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan
+ West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\",\"name\":\"jioindiacentral\",\"displayName\":\"Jio
+ India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"79.08886\",\"latitude\":\"21.146633\",\"physicalLocation\":\"Nagpur\",\"pairedRegion\":[{\"name\":\"jioindiawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea
+ South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South
+ India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West
+ India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada
+ East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France
+ South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany
+ North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway
+ West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland
+ West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK
+ West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE
+ Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu
+ Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"displayName\":\"Brazil
+ Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}}]}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '28985'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp hostname list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01
+ response:
+ body:
+ string: "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East
+ US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East
+ US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South
+ Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West
+ US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus3\",\"name\":\"westus3\",\"displayName\":\"West
+ US 3\",\"regionalDisplayName\":\"(US) West US 3\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-112.074036\",\"latitude\":\"33.448376\",\"physicalLocation\":\"Phoenix\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New
+ South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North
+ Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedencentral\",\"name\":\"swedencentral\",\"displayName\":\"Sweden
+ Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK
+ South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West
+ Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central
+ US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South
+ Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central
+ India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East
+ Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong
+ Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan
+ East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo,
+ Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada
+ Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France
+ Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany
+ West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway
+ East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland
+ North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil
+ South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao
+ Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East
+ US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central
+ US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East
+ US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South
+ Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West
+ US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West
+ US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia
+ Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\",\"name\":\"singapore\",\"displayName\":\"Singapore\",\"regionalDisplayName\":\"Singapore\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South
+ Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United
+ Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United
+ Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United
+ States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstateseuap\",\"name\":\"unitedstateseuap\",\"displayName\":\"United
+ States EUAP\",\"regionalDisplayName\":\"United States EUAP\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast
+ Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North
+ Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West
+ US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio
+ India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE
+ North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central
+ US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West
+ Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South
+ Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape
+ Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia
+ Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia
+ Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia
+ Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan
+ West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\",\"name\":\"jioindiacentral\",\"displayName\":\"Jio
+ India Central\",\"regionalDisplayName\":\"(Asia Pacific) Jio India Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"79.08886\",\"latitude\":\"21.146633\",\"physicalLocation\":\"Nagpur\",\"pairedRegion\":[{\"name\":\"jioindiawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea
+ South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South
+ India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West
+ India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia
+ Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada
+ East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France
+ South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany
+ North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway
+ West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland
+ West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK
+ West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE
+ Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle
+ East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu
+ Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsoutheast\",\"name\":\"brazilsoutheast\",\"displayName\":\"Brazil
+ Southeast\",\"regionalDisplayName\":\"(South America) Brazil Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"South
+ America\",\"longitude\":\"-43.2075\",\"latitude\":\"-22.90278\",\"physicalLocation\":\"Rio\",\"pairedRegion\":[{\"name\":\"brazilsouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\"}]}}]}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '28985'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "containerapp000003.com"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '34'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-web/6.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DomainRegistration/checkDomainAvailability?api-version=2021-03-01
+ response:
+ body:
+ string: '{"name":"containerapp000003.com","available":true,"domainType":"Regular"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '73'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jun 2022 20:46:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"includePrivacy": true, "forTransfer": false}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '46'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-web/6.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DomainRegistration/topLevelDomains/com/listAgreements?api-version=2021-03-01
+ response:
+ body:
+ string: "{\"value\":[{\"agreementKey\":\"DNRA\",\"title\":\"Domain Registration
+ Agreement\",\"content\":\"\\r\\n\\r\\n\\r\\n
\\r\\n
\\r\\n Azure
+ - DOMAIN NAME REGISTRATION AGREEMENT\\r\\n
\\r\\n
\\r\\n Last Revised: 4/5/2022\\r\\n
+ \
\\r\\n
PLEASE READ THIS AGREEMENT CAREFULLY,
+ AS IT CONTAINS IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS AND REMEDIES.\\r\\n\\r\\n
+ \
\\r\\n
1. OVERVIEW\\r\\n\\r\\n
+ \
This Domain Name Registration Agreement (this "Agreement")
+ is entered into by and between Microsoft Azure ("Azure") and you,
+ and is made effective as of the date of electronic acceptance. This Agreement
+ sets forth the terms and conditions of your use of Azure's Domain Name Registration
+ services (the "Domain Name Registration Services" or the
+ "Services"). The terms "we", "us" or
+ "our" shall refer to Azure. The terms "you", "your",
+ "User" or "customer" shall refer to any individual or
+ entity who accepts this Agreement. Unless otherwise specified, nothing in
+ this Agreement shall be deemed to confer any third-party rights or benefits.
\\r\\n
+ \
Your electronic acceptance of this Agreement signifies that you have
+ read, understand, acknowledge and agree to be bound by this Agreement, which
+ incorporates by reference each of (i) Azure\u2019s Universal
+ Terms of Service Agreement ("UTOS"), (ii) all agreements,
+ guidelines, policies, practices, procedures, registration requirements or
+ operational standards of the top-level domain ("TLD") in
+ which you register any domain (\u201CRegistry Policies\u201D), and
+ (iii) any plan limits, product disclaimers or other restrictions presented
+ to you on the Domain Name Registration Services landing page of the Azure
+ website (this \u201CSite\u201D).
\\r\\n
TO LINK
+ TO AND REVIEW THE REGISTRY POLICIES FOR THE TLD IN WHICH YOU WISH TO REGISTER
+ A DOMAIN NAME, PLEASE CLICK HERE.
\\r\\n
+ \
You acknowledge and agree that (i) Azure, in its sole and absolute
+ discretion, may change or modify this Agreement, and any policies or agreements
+ which are incorporated herein, at any time, and such changes or modifications
+ shall be effective immediately upon posting to this Site, and (ii) your use
+ of this Site or the Services found at this Site after such changes or modifications
+ have been made shall constitute your acceptance of this Agreement as last
+ revised. If you do not agree to be bound by this Agreement as last revised,
+ do not use (or continue to use) this Site or the Services found at this Site.
+ \ In addition, Azure may occasionally notify you of changes or modifications
+ to this Agreement by email. It is therefore very important that you keep
+ your shopper account (\u201CShopper Account\u201D) information, including
+ your email address, current. Azure assumes no liability or responsibility
+ for your failure to receive an email notification if such failure results
+ from an inaccurate or out-of-date email address. Azure is an Internet Corporation
+ for Assigned Names and Numbers ("ICANN") accredited registrar.
+ \ \\r
\\n
You acknowledge and agree that Azure may modify this Agreement
+ in order to comply with any terms and conditions set forth by (i) ICANN and/or
+ (ii) the registry applicable to the TLD or country code top level domain ("ccTLD")
+ in question. The term \u201CRegistry Service Provider\u201D shall refer to
+ the service provider responsible for operating and managing the registry services
+ on behalf of the Registry Operator for its applicable TLD or ccTLD. To identify
+ the sponsoring registrar, click here.
\\n\\r\\n
+ \
2. PROVISIONS SPECIFIC TO ALL REGISTRATIONS
+ \ \\r\\n\\r\\n
Unless otherwise noted, the provisions
+ below in this Section 2 are generally applicable to all TLDs that we offer.
+ \ Special provisions specific to any TLD or ccTLD (those in addition to posted
+ Registry Policies) are identified elsewhere below in this Agreement.
+ \ \\r
\\n
\\r\\n- Registry Policies. You agree
+ to be bound by all Registry Policies (defined above in this Agreement) applicable
+ to your domain name registration (at any level). IT IS YOUR RESPONSIBILITY
+ TO VISIT THE APPLICABLE TLD SITE AND READ AND REVIEW ALL APPLICABLE REGISTRY
+ POLICIES PRIOR TO YOUR REGISTRATION IN THE TLD. REGISTRY POLICIES FOR EACH
+ TLD CAN BE FOUND BY VISITING THE CORRESPONDING TLD LINK LISTED HERE.
+ Notwithstanding anything in this Agreement to the contrary, the Registry Operator
+ of the TLD in which the domain name registration is made is and shall be an
+ intended third party beneficiary of this Agreement. As such the parties to
+ this agreement acknowledge and agree that the third party beneficiary rights
+ of the Registry Operator have vested and that the Registry Operator has relied
+ on its third party beneficiary rights under this Agreement in agreeing to
+ Azure being a registrar for the respective TLD. The third party beneficiary
+ rights of the Registry Operator will survive any termination of this Agreement.
+ \ \\n\\r\\n - Registration Requirements.
+ To the extent any TLD or ccTLD requires you meet eligibility (e.g., residency
+ for .JP, .EU, etc.), validation (e.g., DNS validation) or other authentication
+ requirements as a condition to registering a domain name in the TLD, you agree
+ that by submitting an application or registering or renewing your domain name,
+ you represent and warrant that: (a) all information provided to register or
+ renew the domain name (including all supporting documents, if any) is true,
+ complete and correct, and is not misleading in any way, and the application
+ is made in good faith; (b) you meet, and will continue to meet, the eligibility
+ criteria prescribed in the Registry Policies for the applicable TLD for the
+ duration of the domain name registration; (c) you have not previously submitted
+ an application for the domain name with another registrar using the same eligibility
+ criteria, and the other registrar has rejected the application (if applicable);
+ (d) you acknowledge and agree that even if the domain name is accepted for
+ registration, your entitlement to register the domain name may be challenged
+ by others who claim to have an entitlement to the domain name; and (e) you
+ acknowledge and agree that the Registry or the registrar can cancel the registration
+ of the domain name if any of the warranties required are found to be untrue,
+ incomplete, incorrect or misleading.
\\r\\n - Ownership.
+ You acknowledge and agree that registration of a domain name does not create
+ any proprietary right for you, the registrar, or any other person in the name
+ used as a domain name or the domain name registration and that the entry of
+ a domain name in the Registry shall not be construed as evidence or ownership
+ of the domain name registered as a domain name. You shall not in any way transfer
+ or purport to transfer a proprietary right in any domain name registration
+ or grant or purport to grant as security or in any other manner encumber or
+ purport to encumber a domain name registration.
\\r\\r\\n - ICANN
+ Requirements. You agree to comply with the ICANN requirements, standards,
+ policies, procedures, and practices for which each applicable Registry Operator
+ has monitoring responsibility in accordance with the Registry Agreement between
+ ICANN and itself or any other arrangement with ICANN. For additional ICANN-related
+ helpful information, please see ICANN
+ Education Materials and ICANN
+ Benefits and Responsibilities.
\\r\\r\\n - Indemnification
+ of Registry. You agree to indemnify, defend and hold harmless (within
+ 30 days of demand) the Registry Operator and Registry Service Provider and
+ their subcontractors, subsidiaries, affiliates, divisions, shareholders, directors,
+ officers, employees, accountants, attorneys, insurers, agents, predecessors,
+ successors and assigns, from and against any and all claims, demands, damages,
+ losses, costs, expenses, causes of action or other liabilities of any kind,
+ whether known or unknown, including reasonable legal and attorney\u2019s fees
+ and expenses, in any way arising out of, relating to, or otherwise in connection
+ with the your domain name registration, including, without limitation, the
+ use, registration, extension, renewal, deletion, and/or transfer thereof and/or
+ the violation of any applicable terms or conditions governing the registration.
+ You shall not enter into any settlement or compromise of any such indemnifiable
+ claim without Registrar\u2019s or Registry Operator\u2019s prior written consent,
+ which consent shall not be unreasonably withheld, and you agree that these
+ indemnification obligations shall survive the termination or expiration of
+ the Agreement for any reason. IN NO EVENT SHALL THE REGISTRY OPERATOR BE
+ LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL,
+ SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES, INCLUDING LOSS OF PROFIT OR GOODWILL,
+ FOR ANY MATTER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT,
+ TORT (INCLUDING NEGLIGENCE), BREACH OF WARRANTIES, EITHER EXPRESS OR IMPLIED,
+ ANY BREACH OF THIS AGREEMENT OR ITS INCORPORATED AGREEMENTS AND POLICIES YOUR
+ INABILITY TO USE THE DOMAIN NAME, YOUR LOSS OF DATA OR FILES OR OTHERWISE,
+ EVEN IF THE REGISTRY OPERATOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+ DAMAGES.
\\r\\r\\n - Regulated TLDs. For
+ domain name registration in any \u201CRegulated\u201D TLD, you acknowledge
+ and agree your registration is subject to the following additional requirements:
+ (a) comply with all applicable laws, including those that relate to privacy,
+ data collection, consumer protection (including in relation to misleading
+ and deceptive conduct), fair lending, debt collection, organic farming, disclosure
+ of data, and financial disclosures; (b) if you collect and maintain sensitive
+ health and financial data you must implement reasonable and appropriate security
+ measures commensurate with the offering of those services, as defined by applicable
+ law. Regulated TLDs include: .games, .juegos, .school, .schule, .toys,
+ .eco, .care, .diet, .fitness, .health, .clinic, .dental, .healthcare, .capital,
+ .cash, .broker, .claims, .exchange, .finance, .financial, .fund, .investments,
+ .lease, .loans, .market, .money, .trading, .credit, .insure, .tax, .mortgage,
+ .degree, .mba, .audio, .book, .broadway, .movie, .music, .software, .fashion,
+ .video, .app, .art, .band, .cloud, .data, .digital, .fan, .free, .gratis,
+ .discount, .sale, .media, .news, .online, .pictures, .radio, .show, .theater,
+ .tours, .accountants, .architect, .associates, .broker, .legal, .realty, .vet,
+ .engineering, .law, .limited, .show; .theater; .town, .city, .reise,
+ and .reisen
\\r\\r\\n - Highly Regulated
+ TLDs. In addition to the requirements for Regulated TLDs, domain
+ name registration in any Highly-Regulated TLD is subject to the following
+ requirements: (a) you will provide administrative contact information, which
+ must be kept up\u2010to\u2010date, for the notification of complaints or reports
+ of registration abuse, as well as the contact details of the relevant regulatory,
+ or Industry self\u2010regulatory, bodies in their main place of business;
+ (b) you represent that you possess any necessary authorizations, charters,
+ licenses and/or other related credentials for participation in the sector
+ associated with such Highly\u2010regulated TLD; and (c) you will report any
+ material changes to the validity of you authorizations, charters, licenses
+ and/or other related credentials for participation in the sector associated
+ with the Highly\u2010regulated TLD to ensure you continue to conform to the
+ appropriate regulations and licensing requirements and generally conduct your
+ activities in the interests of the consumers they serve. Highly Regulated
+ TLDs include: _.abogado, .attorney, .bank, .bet, .bingo, .casino .charity
+ (and IDN equivalent), .cpa, .corp, creditcard, .creditunion .dds, .dentist,
+ .doctor, .fail, .gmbh, .gripe, .hospital, .inc, .insurance, .lawyer, .lifeinsurance,
+ .llc, .llp, .ltda, .medical, .mutuelle, .pharmacy, .poker, .university, .sarl,
+ .spreadbetting, .srl, .sucks, .surgery .university, .vermogensberater, .vesicherung,
+ and .wtf.\\r\\n
\\r\\nFor .doctor, registrants who
+ hold themselves out to be licensed medical practitioners must be able to demonstrate
+ to the Registrar and Registry, upon request, that they hold the applicable
+ license. \\n\\r\\n - Special Safeguard TLDs.
+ In addition to the requirements for Regulated and Highly-Regulated TLDs, by
+ registering a domain name in any \u201CSpecial-Safeguard\u201D TLD, you agree
+ to take reasonable steps to avoid misrepresenting or falsely implying that
+ you or your business is affiliated with, sponsored or endorsed by one or more
+ country's or government's military forces if such affiliation, sponsorship
+ or endorsement does not exist. Special Safeguard TLDs include: .army,
+ .navy, .airforce
\\r\\n - Third Party Beneficiary.
+ Notwithstanding anything in this Agreement to the contrary, the Registry Operator
+ for any TLD in which your register a domain name is and shall be an intended
+ third party beneficiary of this Agreement. As such the parties to this agreement
+ acknowledge and agree that the third party beneficiary rights of the Registry
+ Operator have vested and that the Registry Operator has relied on its third
+ party beneficiary rights under this Agreement in agreeing to Azure being a
+ registrar for the TLD. Third party beneficiary rights of the Registry Operator
+ shall survive any termination of this Agreement.
\\r\\r\\n - Variable
+ and Non-Uniform Pricing. You acknowledge, understand and agree that
+ certain domain names in certain TLDs are established by Registry Policies
+ to be variably priced (i.e., standard v. premium names) and/or may have non-uniform
+ renewal registration pricing (such that the Fee for a domain name registration
+ renewal may differ from other domain names in the same TLD, e.g., renewal
+ registration for one domain may be $100.00 and $33.00 for a different domain
+ name).
\\r\\r\\n
3. FEES AND PAYMENTS\\r\\n\\r\\n
+ \
(A) GENERAL TERMS, INCLUDING AUTOMATIC RENEWAL TERMS
\\n
You
+ agree to pay any and all prices and fees due for Services purchased or obtained
+ at this Site at the time you order the Services. Azure expressly reserves
+ the right to change or modify its prices and fees at any time, and such changes
+ or modifications shall be posted online at this Site and effective immediately
+ without need for further notice to you. If you have purchased or obtained
+ Services for a period of months or years, changes or modifications in prices
+ and fees shall be effective when the Services in question come up for renewal
+ as further described below. \\r
\\n
Unless otherwise specifically noted
+ (for reasons such as those highlighted in Section 2(x) above), the renewal
+ price for any domain name in any TLD will be the same as the list (non-sale)
+ price shown when you search for and select a domain, and again in the cart
+ prior to purchase. For example, if the list price is $9.99, and a different
+ renewal price is not specifically identified, then the renewal price is also
+ $9.99. Likewise, if a domain name has a sale price of $8.99, with the list
+ (non-sale) price shown (as a strike-through) at $9.99, the renewal price will
+ be $9.99*. \\r
\\n
* Renewal price subject to change prior to
+ actual date of renewal. \\r
\\n
For all other terms and conditions
+ relating to fees, payment, refund and billing, etc. applicable to the Services
+ offered under the scope of this Agreement, please refer to the \u201CFees
+ and Payments\u201D section of our Universal
+ Terms of Service. \\r
\\n\\r\\n
(B) DOMAIN
+ NAME RENEWAL TERMS
\\n
When you register a domain name, you
+ will have the following renewal options:
\\n
- Automatic Renewal.
+ Automatic Renewal is the default setting. Domain names will automatically
+ renew, for a period equivalent to the length of your original domain name
+ registration, and payment will be taken from the Payment Method you have on
+ file with Azure, at Azure's then current rates. Thus, if you have chosen to
+ register your domain name for one (1) year, Azure will automatically renew
+ it for one (1) year. If you have chosen to register your domain name for two
+ (2) years, Azure will automatically renew it for two (2) years, and so on.
+ If you wish to change your automatic renewal term to a different period from
+ your original term, as of 16 July 2020, you may manually renew the domain
+ registration to establish a new default automatic renewal term for the domain.
\\n\\r\\n
+ \ - Manual Renewal. If you have elected to turn off automatic
+ renewal and cancel the product (i.e., cancel the domain name registration)
+ effective at expiration of the then current term, you may nonetheless elect
+ to manually renew the domain name at anytime prior to its expiration date
+ by logging into your Account
+ Manager and manually implementing the renewal or by calling customer service
+ (should you in fact want the domain name to be renewed). If you fail to manually
+ implement the renewal before the expiration date, the domain name will be
+ cancelled and you will no longer have use of that name.
\\r\\n
+ \
All renewals will be subject to the terms of this Agreement, as it
+ may be amended from time to time, and you acknowledge and agree to be bound
+ by the terms of this Agreement (as amended) for all renewed domains. Domain
+ name renewals will be non-refundable. In the event that we are unable to automatically
+ renew your domain name for the renewal option selected for any reason, we
+ may automatically renew your domain name for a period less than your original
+ registration period to the extent necessary for the transaction to succeed.
+ If for any reason Azure is not able to take the payment from the Payment Method
+ you have on file, and you fail to respond to our notices, your domain name
+ registration will expire. It is your responsibility to keep your Payment Method
+ information current, which includes the expiration date if you are using a
+ credit card. \\r
\\r\\n
For certain ccTLDs (.am, .at, .be,
+ .br, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .fr, .gs, .it, .jp,
+ .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw,
+ .idv.tw, .uk, and .vg), renewal billing will occur on the first day of the
+ month prior to the month of expiration.
\\n
For certain ccTLDs (.am,
+ .at, .be, .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .fr, .gs, .it,
+ .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw,
+ .idv.tw, .uk, and .vg), renewal will occur, or must occur manually if the
+ product was previously cancelled, no later than the 20th of the month prior
+ to the expiration date, or your domain name will be placed in non-renewal
+ status. For some ccTLDs (.es) renewal must be processed no later than seven
+ days before the expiration date, or your domain name will be placed in non-renewal
+ status. When the domain name is in non-renewal status, you can renew the
+ domain name only by calling Azure and requesting that the domain name be renewed.
+ You cannot renew the domain name through your Account
+ Manager. If you fail to manually implement the renewal of any cancelled
+ product before the expiration date, the domain name will be cancelled and
+ you will no longer have use of that name. \\r
\\n\\r\\n
You
+ agree that Azure will not be responsible for cancelled domain names that you
+ fail to renew in the timeframes indicated in this Agreement. In any case,
+ if you fail to renew your domain name in a timely fashion, additional charges
+ may apply. If you signed up for privacy services, protected registration,
+ or any other similar service, with your domain name registration, these services
+ will automatically be renewed when your domain name registration is up for
+ renewal, and you will incur the applicable additional renewal fee unless you
+ cancel in advance.
\\r\\n
If you fail to renew your domain
+ name in the timeframes indicated in this Agreement, you agree that Azure may,
+ in its sole discretion, renew your expired domain name on your behalf. If
+ Azure decides to renew your expired domain name on your behalf, you will have
+ a Renewal Grace Period during which you must reimburse Azure for the renewal
+ and keep your domain name. The Renewal Grace Period is currently twelve (12)
+ days but subject to change under the terms of this Agreement.
\\n
For
+ certain ccTLDs (.am, .at, .be, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm,
+ .fr, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw,
+ .com.tw, .org.tw, .idv.tw, .uk, and .vg) there is no Renewal Grace Period
+ after the expiration date of the domain name. If you do not reimburse Azure
+ for the renewal during the Renewal Grace Period your domain name will be placed
+ on Hold and flagged for deletion after which you may have up to a 30-day redemption
+ period to redeem your domain name, provided that your domain name is not subject
+ to an expired domain name auction bid and you pay Azure a Redemption fee.
+
\\n
The Redemption fee is displayed at checkout and is subject to change
+ under the terms of this Agreement. If you do not redeem your domain name prior
+ to the end of the 30-day redemption period Azure may, in its sole discretion,
+ delete your domain name or transfer it to another registrant on your behalf.
+ \ During the redemption period your domain name may be parked.
\\n\\r\\n
+ \
If your domain name is deleted, the Registry also provides a 30-day
+ Redemption Grace Period during which you may pay Azure a redemption fee and
+ redeem your domain name. The redemption fee is displayed at checkout and is
+ subject to change under the terms of this Agreement. If you do not redeem
+ your domain name prior to the end of the Registry's Redemption Grace Period
+ the Registry will release your name and it will become available for registration
+ on a first-come-first-served basis.
\\n
Renewal Grace Periods and Redemption
+ Grace Periods vary for different ccTLDs. Please refer to the specific terms
+ for the applicable TLD. In the event there is a conflict between the provisions
+ of this paragraph and the ccTLD terms, the ccTLD terms shall control.
\\n
Our
+ registration expiration notification policy and associated fees are described
+ here.
+ \
\\n\\r\\n
(C) FREE PRODUCT TERMS
\\n
In
+ the event you are provided with free products with the registration of a domain
+ name, you acknowledge and agree that such free products will only be available
+ with a valid purchase and may be terminated in the event the domain name is
+ deleted or cancelled. For free domain names, you acknowledge and agree that
+ you may not change the account associated with such free domain for the first
+ five (5) days after registration. In the event a free domain name is offered
+ with the registration of another domain and if the paid domain name registered
+ fails, then we may, in our sole discretion, either delete the registration
+ of the free domain or refund the difference between the amount paid and the
+ value of the free domain. Failed registrations associated with promotional
+ offers may result in the deletion of the free or discounted item or an adjustment
+ between the registered domain price and the value of the discounted item,
+ in our sole discretion.
\\n\\r\\n
4. TERM OF
+ AGREEMENT; TRANSFERS; DOMAIN TASTING \\r\\n\\r\\n
The
+ term of this Agreement shall continue in full force and effect as long as
+ you have any domain name registered through Azure. \\r
\\r\\n
You
+ agree that you will not transfer any domain name registered through Azure
+ to another domain name registrar during the first sixty (60) days after its
+ initial registration date. You agree that you may not transfer any domain
+ name for ten (10) days after a Change of Account. \\r
\\r\\n
You
+ further agree that you will not engage in "domain tasting" by using
+ the five (5) day grace period in which a registrant may choose to cancel a
+ domain name and get a full refund of the registration fee as a vehicle to
+ test the marketability or viability of a domain name. If Azure determines
+ (which determination shall be made by Azure in its sole and absolute discretion)
+ that you have been engaging in "domain tasting", then Azure reserves
+ the right to (a) charge you a small fee (which fee shall be deducted from
+ any refund issued) or (b) refuse your cancellation/refund request altogether.
+ Azure will not charge you a fee if Azure cancels your domain name during the
+ five (5) day grace period due to fraud or other activity outside of your control.
+ The five (5) day grace period does not apply to Premium Domains, which are
+ non-refundable. \\r
\\r\\n
You agree that Azure shall not be bound
+ by (i) any representations made by third parties who you may use to purchase
+ services from Azure, or (ii) any statements of a general nature, which may
+ be posted on Azure's website or contained in Azure's promotional materials.
\\r\\n
+ \
5. UP TO DATE INFORMATION; USE OF INFORMATION AND
+ EXPIRATION\\r\\n\\r\\n
You agree to notify Azure
+ within five (5) business days when any of the information you provided as
+ part of the application and/or registration process changes. It is your responsibility
+ to keep this information in a current and accurate status. Failure by you,
+ for whatever reason, to provide Azure with accurate and reliable information
+ on an initial and continual basis, shall be considered to be a material breach
+ of this Agreement and a basis for suspension and/or cancellation of the domain
+ name. Failure by you, for whatever reason, to respond within five (5) business
+ days to any inquiries made by Azure to determine the validity of information
+ provided by you, shall also be considered to be a material breach of this
+ Agreement and a basis for suspension and/or cancellation of the domain name.
+ You agree to retain a copy for your record of the receipt for purchase of
+ your domain name.
\\r\\n
You agree that for each domain name
+ registered by you, the following contact data is required: postal address,
+ email address, telephone number, and if available, a facsimile number for
+ the Registered Name Holder and, if different from the Registered Name Holder,
+ the same contact information for, a technical contact, an administrative contact
+ and a billing contact.
\\n
\\nYou acknowledge and agree that domain
+ name registration requires that your contact information, in whole or in part,
+ be shared with the registry operator, for their use, copying, distribution,
+ publication, modification and other processing for the purpose of administration
+ of the domain name registration, which may require such information be transferred
+ back and forth across international borders, to and from the U.S. to the EU,
+ for example. As required by ICANN or for certain ccTLDs (.am, .au, .com.au,
+ .net.au, .org.au, .ca, .cz, .fr, .it, .jp, .co.jp, .kr, .co.kr, .ne.kr, .re.kr,
+ .no, .co.nz, .net.nz, .org.nz, .vg, .se, .so, .sg, .com.sg, .tw, .com.tw,
+ .net.tw, .org.tw, .uk, .co.uk, .me.uk, .org.uk, .us), this information may
+ be made publicly available by the registry operator via Whois or its successor
+ protocol (collectively referred to as the \u201CWhois" Directory) that
+ is beyond, and not subject to, Azure's control.
\\n
Both Azure and the
+ registry operator may be required to archive this information with a third-party
+ escrow service. You hereby consent and give permission for all such requirements
+ and disclosures. Further, you represent and warrant that, if you are providing
+ information about a third party, you have notified the third party of the
+ disclosure and the purpose for the disclosure and you have obtained the third
+ party's consent to such disclosure. Registrar will not process data in a way
+ that is incompatible with this Agreement. Registrar will take reasonable precautions
+ to protect data from loss or misuse.
\\n\\r\\n
You agree
+ that for each domain name registered by you the following information could
+ be made publicly available in the Whois Directory as determined by ICANN or
+ registry policies and may be sold in bulk as set forth in the ICANN agreement:
\\n
\\n- The
+ domain name;
\\n- Your name and postal address;
\\n- The name,
+ email address, postal address, voice and fax numbers for technical and administrative
+ contacts;
\\n- The Internet protocol numbers for the primary and secondary
+ name servers;
\\n- The corresponding names of the name servers; and
\\n- The
+ original date of registration and expiration date,
\\n- Name of primary
+ name server and secondary name server,
\\n- Identity of the registrar.
\\n
\\n
You
+ agree that, to the extent permitted by ICANN, Azure may make use of the publicly
+ available information you provided during the registration process. If you
+ engage in the reselling of domain names you agree to provide any individuals
+ whose personal information you've obtained, information about the possible
+ uses of their personal information pursuant to ICANN policy. You also agree
+ to obtain consent, and evidence of consent, from those individuals for such
+ use of the personal information they provide.
\\n\\r\\n
You
+ agree that Azure has the right to make public and share with third parties
+ certain information in connection with the sale or purchase of domain names
+ on the website, including but not limited to (a) the name of the domain name
+ sold or purchased, (b) the sale or purchase price of the domain name sold
+ or purchased, and (c) information relating to the timing of the sale or purchase.
\\r\\n
+ \
In order for us to comply with any current or future rules and
+ policies for domain name systems including any rules or policies established
+ by the CIRA or any provincial or federal government or by other organization
+ having control or authority to establish rules or policies, you hereby grant
+ to us the right to disclose to third parties through an interactive publicly
+ accessible registration database the following information that you are required
+ to provide when applying for a domain name:
\\n
\\n
\\r\\n- The
+ domain or sub-domain name(s) registered by you;
\\r\\n- Your organization
+ name, type and postal address;
\\r\\n- The name(s), position(s), postal
+ address(es), e-mail address(es), voice telephone number(s) and where available
+ the fax number(s) of the technical and administrative contacts for your domain
+ or sub-domain name(s);
\\r\\n- The full hostnames and Internet protocol
+ (IP) addresses of at least two (2) name server hosts (one primary and at least
+ one secondary) for your domain or sub-domain name. Up to six (6) name servers
+ may be specified. If a host has more than one (1) IP address, use a comma-separated
+ list;
\\r\\n- The corresponding names of those name servers;
+ \ \\r\\n- The original creation date of the registration; and
\\r\\n- The
+ expiration date of the registration.
\\r\\n
\\r\\n
We may be required
+ to make this information available in bulk form to third parties. We may also
+ transfer or assign this information to CIRA or such other third party as we
+ may decide, in our sole discretion.
\\n\\r\\n
6.
+ DISPUTE RESOLUTION POLICY\\r\\n\\r\\n
You agree
+ to be bound by our current Dispute Resolution Policy. This policy is incorporated
+ herein and made a part of this Agreement. You can view the Uniform
+ Domain Name Dispute Resolution Policy online. You agree that Azure may
+ from time to time modify its Dispute Resolution Policy. Azure will post any
+ changes to its Dispute Resolution Policy at least thirty (30) days before
+ they become effective. You agree that by maintaining your domain name registrations
+ with Azure after the updated policy becomes effective that you agree to the
+ Dispute Resolution policy as amended. You agree to review Azure's website
+ periodically to determine if changes have been made to the Dispute Resolution
+ Policy. If you cancel or terminate your Services with Azure as a result of
+ the modified Dispute Resolution policy, no fees will be refunded to you. You
+ also agree to submit to proceedings commenced under ICANN's Uniform Rapid
+ Suspension System, if applicable.
\\r\\n
You agree that if a dispute
+ arises as a result of one (1) or more domain names you have registered using
+ Azure, you will indemnify, defend and hold Azure harmless as provided for
+ in this Agreement. You also agree that if Azure is notified that a complaint
+ has been filed with a governmental, administrative or judicial body, regarding
+ a domain name registered by you using Azure, that Azure, in its sole discretion,
+ may take whatever action Azure deems necessary regarding further modification,
+ assignment of and/or control of the domain name deemed necessary to comply
+ with the actions or requirements of the governmental, administrative or judicial
+ body until such time as the dispute is settled. In this event you agree to
+ hold Azure harmless for any action taken by Azure.
\\r\\n
You agree
+ to submit, without prejudice to other potentially applicable jurisdictions,
+ to the jurisdiction of the courts (1) of your domicile, (2) where registrar
+ is located or (3) where the registry operator is located (e.g., China for
+ .CN, Columbia for .CO, UK for .EU, etc.).
\\r\\n
In the case of
+ .ca domain names, you agree that, if your use of the service or the registration
+ of a .ca domain name is challenged by a third party, you will be subject to
+ the provisions specified by CIRA in their dispute resolution policy, in effect
+ at the time of the dispute.
\\r\\n
7. TRANSFER OF
+ DOMAIN NAMES\\r\\n\\r\\n
If you transfer any domain
+ name, you agree to provide the information required by, and to abide by, the
+ procedures and conditions set forth in our Domain
+ Name Transfer Agreement and Change
+ of Registrant Agreement. You may view the latest versions of our Domain
+ Name Transfer Agreement and Change of Registrant Agreement online. In order
+ to further protect your domain name, any domain name registered with Azure
+ or transferred to Azure shall be placed on lock status, unless an opted-out
+ has occurred as defined in our Change of Registrant Agreement or Domain Name
+ Proxy Agreement. The domain name must be placed on unlock status in order
+ to initiate a transfer of the domain name away from Azure to a new Registrar.
+ You may log into your account with Azure at any time after your domain name
+ has been successfully transferred to Azure, and change the status to unlock.
\\r\\n
+ \
8. YOUR OBLIGATIONS; SUSPENSION OF SERVICES; BREACH
+ OF AGREEMENT\\r\\n\\r\\n
You represent and warrant
+ to the best of your knowledge that, neither the registration of the domain
+ nor the manner it is directly or indirectly used, infringes the legal rights
+ of any third party. You will comply with all applicable laws, including,
+ but not limited to those relating to privacy, data collection, consumer protection,
+ fair lending, debt collection, organic farming, and disclosure of data and
+ financial disclosures. If you collect and maintain sensitive health and financial
+ data, you must implement reasonable and appropriate security measures commensurate
+ with the offering of those services, as defined by applicable law. You represent
+ that you possess any necessary authorization, charter, license, and/or other
+ related credential for participation in the sector associated with the associated
+ registry tld string. You will report any material changes to the validity
+ of your authorization, charter, license, and/or other related credential.
+ You will indemnify and hold harmless the registrar and registry operator,
+ and their directors, officers, employees and agents, from and against any
+ and all claims, damages, liabilities, costs and expenses (including reasonable
+ legal fees and expenses) arising out of or related to the domain name registration.
+ \ This obligation shall survive expiration or termination of this Agreement
+ or the domain name registration.
\\r\\n
You agree that, in addition
+ to other events set forth in this Agreement: \\r
\\n
- Your ability
+ to use any of the services provided by Azure is subject to cancellation or
+ suspension in the event there is an unresolved breach of this Agreement and/or
+ suspension or cancellation is required by any policy now in effect or adopted
+ later by ICANN;
\\r\\n \\r\\n- Your registration of any domain names
+ shall be subject to suspension, cancellation or transfer pursuant to any ICANN
+ adopted specification or policy, or pursuant to any Azure procedure not inconsistent
+ with an ICANN adopted specification or policy (a) to correct mistakes by Azure
+ or the registry operator in registering any domain name; or (b) for the resolution
+ of disputes concerning any domain name.
\\r\\n
\\nYou acknowledge
+ and agree that Azure and registry reserve the right to deny, cancel or transfer
+ any registration or transaction, or place any domain name(s) on lock, hold
+ or similar status, as either deems necessary, in the unlimited and sole discretion
+ of either Azure or the registry: (i) to comply with specifications adopted
+ by any industry group generally recognized as authoritative with respect to
+ the Internet (e.g., RFCs), (ii) to protect the integrity and stability of,
+ and correct mistakes made by, any domain name registry or registrar, (iii)
+ for the non-payment of fees to registry, (iv) to protect the integrity and
+ stability of the registry, (v) to comply with any applicable court orders,
+ laws, government rules or requirements, requests of law enforcement, or any
+ dispute resolution process, (vi) to comply with any applicable ICANN rules
+ or regulations, including without limitation, the registry agreement, (vii)
+ to avoid any liability, civil or criminal, on the part of registry operator,
+ as well as its affiliates, subsidiaries, officers, directors, and employees,
+ (viii) per the terms of this Agreement, (ix) following an occurrence of any
+ of the prohibited activities described in Section 8 below, or (x) during the
+ resolution of a dispute.
\\n\\r\\n
You agree that your failure
+ to comply completely with the terms and conditions of this Agreement and any
+ Azure rule or policy may be considered by Azure to be a material breach of
+ this Agreement and Azure may provide you with notice of such breach either
+ in writing or electronically (i.e. email). In the event you do not provide
+ Azure with material evidence that you have not breached your obligations to
+ Azure within ten (10) business days, Azure may terminate its relationship
+ with you and take any remedial action available to Azure under the applicable
+ laws. Such remedial action may be implemented without notice to you and may
+ include, but is not limited to, cancelling the registration of any of your
+ domain names and discontinuing any services provided by Azure to you. No fees
+ will be refunded to you should your Services be cancelled or terminated because
+ of a breach.
\\n
Azure's failure to act upon or notify you of any event,
+ which may constitute a breach, shall not relieve you from or excuse you of
+ the fact that you have committed a breach.
\\n\\r\\n
9.
+ RESTRICTION OF SERVICES; RIGHT OF REFUSAL\\r\\n\\r\\n
If
+ you are hosting your domain name system (\u201CDNS\u201D) on Azure\u2019s
+ servers, or are using our systems to forward a domain name, URL, or otherwise
+ to a system or site hosted elsewhere, or if you have your domain name registered
+ with Azure, you are responsible for ensuring there is no excessive overloading
+ on Azure\u2019s servers. You may not use Azure\u2019s servers and your domain
+ name as a source, intermediary, reply to address, or destination address for
+ mail bombs, Internet packet flooding, packet corruption, or other abusive
+ attack. Server hacking or other perpetration of security breaches is prohibited.
+ You agree that Azure reserves the right to deactivate your domain name from
+ its DNS if Azure deems it is the recipient of activities caused by your site
+ that threaten the stability of its network.
\\r\\n
You agree
+ that Azure, in its sole discretion and without liability to you, may refuse
+ to accept the registration of any domain name. Azure also may in its sole
+ discretion and without liability to you delete the registration of any domain
+ name during the first thirty (30) days after registration has taken place.
\\n
In
+ the event Azure refuses a registration or deletes an existing registration
+ during the first thirty (30) days after registration, you will receive a refund
+ of any fees paid to Azure in connection with the registration either being
+ cancelled or refused. In the event Azure deletes the registration of a domain
+ name being used in association with spam or morally objectionable activities,
+ no refund will be issued.
\\n\\r\\n
10. DEFAULT
+ SETTINGS; PARKED PAGE\\r\\n\\r\\n
Choosing Your
+ Domain Name Settings. When you register a domain name with Azure, you
+ will be prompted to choose your domain name settings during the checkout process.
+ \ If you plan on using another provider for your website or hosting needs,
+ then you should enter the name servers of such provider when you choose your
+ domain name settings. This will direct your domain name away from Azure\u2019s
+ name servers. If you are an existing Azure customer and have already set
+ up a customer profile designating your domain name settings for new domain
+ name registrations, you will not need to complete this step again during the
+ checkout process.
\\r\\n
Azure\u2019s Default Settings.
+ \ If you do not direct your domain name away from Azure\u2019s name servers
+ as described above, Azure will direct your domain name to a \u201CParked
+ Page\u201D (\u201CDefault Setting\u201D). You acknowledge and
+ agree that Azure has the right to set the Default Setting.
\\r\\n
Parked
+ Page Default Setting. Azure's Parked Page service is an online domain
+ monetization system designed to generate revenue (through the use of pay per
+ click advertising) from domain names that are not actively being used as websites.
+ \ If your domain name is directed to a Parked Page, you acknowledge and agree
+ that Azure may display both (a) in-house advertising (which includes links
+ to Azure products and services) and (b) third-party advertising (which includes
+ links to third-party products and services) on your Parked Page through the
+ use of pop-up or pop-under browser windows, banner advertisements, audio or
+ video streams, or any other advertising means, and we may aggregate for our
+ own use, related usage data by means of cookies and other similar means. In
+ addition, you acknowledge and agree that all in-house and third-party advertising
+ will be selected by Azure and its advertising partners, as appropriate, and
+ you will not be permitted to customize the advertising, or entitled to any
+ compensation in exchange therefor. Please note that the third-party advertising
+ displayed on Azure\u2019s Parked Pages may contain content offensive to you,
+ including but not limited to links to adult content. Azure makes no effort
+ to edit, control, monitor, or restrict the content and third-party advertising
+ displayed on Azure\u2019s Parked Pages, and expressly disclaims any liability
+ or responsibility to you or any third party in connection therewith.
\\r\\n
+ \
Changing Azure\u2019s Default Settings. You may change
+ Azure\u2019s Default Settings at any time during the term of your domain name
+ registration.
\\n
- Content Displaying On Your Parked Page.
+ \ You can not modify the content displaying on your Parked Page. You may
+ select one of the other options listed below.
\\r\\n\\r\\n- Participating
+ In Domain Name Monetization. If you wish to participate in the domain
+ monetization potential presented by Azure\u2019s Parked Page service, please
+ review and consider purchasing our CashParking\xAE service.
\\r\\n \\r\\n- No
+ Content. If the options listed above are not acceptable to you, please
+ contact customer support to learn what other options might be available to
+ you.
\\r\\n
Return To Parked Page Default Setting
+ Upon Domain Name Expiration. Upon domain name expiration, and regardless
+ of how you use your domain name during the term of your domain name registration,
+ your domain name will automatically return to the Parked Page Default Setting
+ described above. As used in this paragraph, \u201Cexpiration\u201D is deemed
+ to include any \u201Crenewal period\u201D or \u201Credemption period\u201D
+ immediately after the domain name expires, but before the domain name is returned
+ to the registry. Once your domain name has returned to the Parked Page Default
+ Setting described above, the only way to opt out of the Parked Page service
+ is to renew, redeem, or re-register your domain name in accordance with Section
+ 2(B), Domain Name Renewal Terms, of this Agreement.
\\r\\n
11.
+ \ DOMAIN ADD-ONS\\r\\n\\r\\n
Business Registration:
+ \ Business registration allows You to display additional information about
+ the business that is the basis of Your domain name, including, but not limited
+ to, such information as Your fax number, street address, and hours of operation.
\\r\\n
+ \
Expiration Consolidation. You understand and acknowledge
+ the expiration consolidation service may only be used to consolidate the expiration
+ of .com and .net domain names. The service may not be used to consolidate
+ domains that are on Registrar HOLD, Registry HOLD, or pending Transfer status.
+ You acknowledge the service may only be used to push the expiration date of
+ Your domains forward in time, at least one (1) month forward and no more than
+ ten (10) years forward, and then, only for a period lasting less than twelve
+ (12) months. Once the service has been used to consolidate domains, the new
+ expiration date may not be reversed. To ensure the service is not abused or
+ used as an alternative to renewals, you may only use the service on each domain
+ once in any 12-month period. The service may only be used on domain names
+ that have not passed their expiration date. In order to change the expiration
+ date again, You will be required to renew the domain name first. You further
+ understand and acknowledge the service may only be used to coordinate domains
+ where we are the registrar of record. Domains not registered with us must
+ be transferred before we can perform the Service.
\\r\\n
Discount
+ Domain Club Basic. The Discount Domain Club membership includes the
+ purchase of discounted products and services from us, including discounts
+ on certain domain registrations. Eligible TLDs include .COM, .NET, .ORG, .INFO,
+ .BIZ, .CO, .CA, .COM.AU, .CO.UK, .US, .IN. Any available discount applies
+ only to registration fees and will not apply to any commission fees. You are
+ required to keep Your membership current as long as You have free or discounted
+ products or services that are purchased with us. If You fail to renew Your
+ membership, without canceling Your discounted domain registration or other
+ services, we will automatically renew Your products and services at the regular
+ pricing in effect at the time of renewal, charging the Payment Method on file
+ for You, and You will be unable to purchase any more discounted products or
+ services, or use Your free accounts until the Membership Agreement fee has
+ been paid. All membership fees are non-refundable.
\\n
Discount
+ Domain Club Premium. The Discount Domain Club membership includes,
+ the purchase of discounted products and services from us, including discounts
+ on selected domain registrations, one (1) free Auctions account, one (1) free
+ CashParking account, and discounts on Domain Brokerage Service. Any available
+ discount applies only to upfront Broker Service Fee and will not apply to
+ any commission fees. You are required to keep Your membership current as
+ long as You have free or discounted products or services that are purchased
+ with us. If You fail to renew Your membership, without canceling Your discounted
+ domain registration or other services, we will automatically renew Your products
+ and services at the regular pricing in effect at the time of renewal, charging
+ the Payment Method on file for You, and You will be unable to purchase any
+ more discounted products or services, or use Your free accounts until the
+ Membership Agreement fee has been paid. All membership fees are non-refundable.
\\n\\r\\n
+ \
Backordering/Monitoring. You agree a domain
+ name that has expired shall be subject first to a grace period of twelve (12)
+ days, followed by the ICANN-mandated redemption grace period of thirty (30)
+ days. During this period of time, the current domain name registrant may renew
+ the domain name and retain registration rights. We do not guarantee your backorder
+ will result in you obtaining the domain name and expressly reserves the right
+ to (a) refuse additional backorders or (b) cancel existing backorders at any
+ time for any reason. If your backorder is refused or cancelled, we agree
+ to promptly refund any fees paid for such domain name backorder. The domain
+ name may also be placed in a secondary market for resale through the Auctions\xAE
+ service. After your first year of Auctions membership, you agree that unless
+ otherwise advised, we will automatically renew your Auctions membership using
+ the payment method you have on file for so long as your backorder credit is
+ active. You may learn more about Auctions by visiting the Auctions website.
+ The domain name may also be subject to a drop pool process before it is available
+ for purchasing. You understand we and our registrar affiliates use our services,
+ including backordering. Therefore, the domain name may be registered with
+ a different registrar, but can be managed through your account. By using
+ the Services, you will be able to, among other things: \\r
\\n
- Backorder
+ any domain name under the top level domains .COM, .NET, .US, .BIZ, .INFO,
+ .ORG, .MOBI. A backorder for a domain name will include the price of up to
+ a one-year domain name registration. Should you successfully backorder any
+ domain name, you will be subject to the terms and conditions of the Domain
+ Name Registration and related agreements, which are incorporated herein by
+ reference.
- Change your backorder until you obtain a domain name. You
+ will have the opportunity to change the credit to a different domain name
+ until you successfully capture one. After three (3) years, if the credit is
+ not used, we reserves the right to remove the credit.
- Monitor your
+ currently registered domain names for changes in registrar, status, expiration
+ date or name servers at no additional cost.
- Subscribe to Domain Alert
+ Pro or monitoring, which enables you to monitor any currently registered domain
+ name, regardless of registrar, for historical tracking of status changes and
+ designation of multiple email notification addresses.
\\r\\n\\r\\n
+ \
Domain Ownership Protection. Domain Ownership
+ Protection generally allows You to: (i) prevent accidental loss of a domain
+ name due to an expired credit card or invalid payment method for a period
+ of ninety (90) days before the domain goes through its normal expiration process;
+ and (ii) lock your domain name to your account.
\\n
THE SERVICE WILL
+ NOT, HOWEVER, PREVENT TRANSFERS RESULTING FROM YOUR ACTION OF LISTING YOUR
+ DOMAIN FOR SALE ON ANY OF Azure'S
+ PLATFORMS, INCLUDING PREMIUM LISTINGS, REGARDLESS OF WHEN YOU PURCHASED THE
+ SERVICE.
\\n
Once you have elected to purchase the Service for any and
+ all domain names, the automatic renewal function will be activated for each
+ domain name and those names will not be transferable until You elect to remove
+ the service or sell the domain as mentioned above. Accordingly, You acknowledge
+ and agree You have carefully considered the implications accompanying the
+ purchase of the Service and understand the restrictions the Service will place
+ upon Your ability to transfer any domains for which You have purchased the
+ Service. Furthermore, you acknowledge and agree that the Service includes
+ additional steps to verify your registration rights prior to deactivation.
+ While You can elect to deactivate the Service at any time, you also acknowledge
+ and agree that the Service is subject to our Refund Policy, and that you may
+ not be entitled to a refund.
\\n\\r\\n
Premium Domain
+ Listing and Buying Services.
\\n
\\n- \\n
Description
+ of Service. The Premium Domain Buying Service (\u201CService\u201D)
+ is provided to facilitate the buying of currently registered domain names
+ only, and not the purchase or sale of associated website content.. Azure provides
+ a venue and a transaction facilitation process and will take a stated commission
+ for each completed transaction. Azure is not an escrow agent. As a result,
+ Azure does not guarantee the quality, safety or legality of many of the domain
+ names. Domain names listed may be withdrawn at any time by the seller or by
+ us. You acknowledge and agree that your transaction will be handled by Azure's
+ \u201CTransaction Assurance\u201D process. By using Azure's \u201CTransaction
+ Assurance\u201D process, you authorize Azure to perform tasks on your behalf
+ in order to complete the transaction. In these transactions, Azure acts as
+ a transaction facilitator to help you buy and sell domain names. Azure will
+ not use your funds for its operating expenses or any other corporate purposes,
+ and will not voluntarily make funds available to its creditors in the event
+ of bankruptcy or for any other purpose. You acknowledge Azure is not a bank
+ and the service is a payment processing service rather than a banking service.
+ You further acknowledge Azure is not acting as a trustee, fiduciary or escrow
+ with respect to your funds. In all transactions, where the domain name is
+ registered to us, domain names purchased through the Service may not be transferred
+ away from us to another registrar for a period of sixty (60) days following
+ the change of registrant date.
\\n \\n- \\n
Your Obligations.
Purchasing
+ Domain Names. As a Buyer, You are obligated to complete the transaction
+ if You purchase the domain name. You acknowledge that some listed domain names
+ may be subject to an additional registration fee. For those domain names,
+ the registration fee will be added to the price to form the purchase price.
+ You agree that by completing the transaction, You are responsible for payment
+ of the registration fee. We will obtain the funds first by the Payment Method
+ You have designated. If there are insufficient funds or invalid credit card
+ information, we may obtain the remaining funds by charging any Payment Method
+ You have on file.
Azure will remit payment of the full agreed upon
+ purchase price minus any commissions to the Seller after a prescribed period
+ of time after receiving funds from the Buyer, except in the event of a dispute
+ or where the payment is suspected to be fraudulent, as determined by Azure
+ in its sole and absolute discretion. At no time will You be able to withdraw
+ those funds or send the funds to another recipient unless the initial transaction
+ is canceled. Transfer of Registration Rights. We are not the registrant of
+ all of the domain names listed on the Site and cannot guarantee immediate
+ transfer. For domain names in which we are the registrant, transfer of registration
+ will begin upon completion of the check out procedure. Further, the transfer
+ by us of any domain name to a buyer is done without warranty and we expressly
+ waive any and all warranties or representations that a domain name does not
+ infringe upon the intellectual property rights of a third party. Any Domain
+ Ownership Protection service that is present on the domain will not prevent
+ you from listing the domain name and having the registration rights transferred
+ away from You. Azure is not responsible and disclaims all liability in the
+ event that the domain name transaction fails to complete due to breach by
+ either the Buyer or the Seller of its respective obligations. Buyer acknowledges
+ and agrees that Buyer does not obtain any rights in the registration of a
+ domain name until the transaction is complete.
Transfer of
+ Registration Rights. We are not the registrant of all of the domain
+ names listed on the Site and cannot guarantee immediate transfer. For domain
+ names in which we are the registrant, transfer of registration will begin
+ upon completion of the check out procedure. Further, the transfer by us of
+ any domain name to a buyer is done without warranty and we expressly waive
+ any and all warranties or representations that a domain name does not infringe
+ upon the intellectual property rights of a third party. Any Domain Ownership
+ Protection service that is present on the domain will not prevent you from
+ listing the domain name and having the registration rights transferred away
+ from You.
Azure is not responsible and disclaims all liability in the
+ event that the domain name transaction fails to complete due to breach by
+ either the Buyer or the Seller of its respective obligations. Buyer acknowledges
+ and agrees that Buyer does not obtain any rights in the registration of a
+ domain name until the transaction is complete.
Selling Domain
+ Names. As a Seller, You are obligated to complete the transaction
+ if the Buyer commits to purchase the domain at an agreed upon purchase price.
+ You authorize Azure to perform tasks on your behalf as part of its \u201CTransaction
+ Assurance\u201D process including making deposits. You must, at the time of
+ listing of Your domain name, establish a payee account.
After a fraud
+ holding period, if no fraud has been detected, payments for completed domain
+ name sales will be credited to your payee account and paid according to the
+ payment method selected in your payee account.
You hereby authorize
+ Azure to initiate and post (i) credit (positive) entries for payments to the
+ deposit account and (ii) debit (negative) entries to the deposit account to
+ reverse erroneous payments and/or make adjustments to incorrect payments.
+ You acknowledge and agree that the amount initiated and posted to the deposit
+ account will represent payment for domain names sold using the Services, less
+ any applicable fees and/or chargebacks. You acknowledge and agree that there
+ may be a delay of several days between the time that Azure initiates the payment
+ of proceeds and the time that the proceeds are actually posted to the deposit
+ account, and Azure expressly disclaims any liability or responsibility regarding
+ the same.
The authority granted to Azure by the deposit account owner
+ herein will remain in full force and effect until Azure has received written
+ notification from the deposit account owner that such authority has been revoked,
+ but in any event, such writing shall be provided in such a manner as to afford
+ Azure a reasonable opportunity to act on such revocation, or until Azure has
+ sent notice to terminate this Agreement. Azure will not release the domain
+ name to Buyer until receipt of confirmation that the funds have been verified.
\\n \\n
\\n\\r\\n
+ \
Transfer Validation The transfer validation service
+ is provided to help You keep Your domain name secure. By choosing to use the
+ service, You are making an explicit and voluntary request to us to deny all
+ attempts to transfer Your domain name to another registrar, or to move Your
+ domain name to another account, unless You verify each request as described
+ herein. You will provide us with a contact name, phone number and PIN for
+ domain transfer validations. You will be contacted by us when a domain transfer
+ is requested for a domain name in Your account.
\\n
When we receive
+ a transfer request, we will call You to verify the transfer request. If we
+ cannot reach You with seventy-two (72) hours of receipt of the transfer request,
+ the transfer will be denied. If You do not provide the proper PIN, the transfer
+ will be denied. When we receive a change of account request, we will call
+ You to verify the change request. If we cannot reach You with seventy-two
+ (72) hours of receipt of the change request, the change will be denied. If
+ You do not provide the proper PIN, the change will be denied. Availability
+ of Services are subject to the terms and conditions of this Agreement and
+ each of our policies and procedures. We shall use commercially reasonable
+ efforts to attempt to provide certain portions of the Services on a twenty-four
+ (24) hours a day, seven (7) days a week basis throughout the term of this
+ Agreement and other portions of the service, during normal business hours.
+
\\n
You acknowledge and agree that from time to time the Services may
+ be inaccessible or inoperable for any reason, including, without limitation:
+ (i) equipment malfunctions; (ii) periodic maintenance procedures or repairs
+ that we may undertake from time to time; or (iii) causes beyond the reasonable
+ control of us or that are not reasonably foreseeable by us, including, without
+ limitation, interruption or failure of telecommunication or digital transmission
+ links, hostile network attacks, network congestion or other failures. You
+ acknowledge and agree that we has no control over the availability of the
+ service on a continuous or uninterrupted basis.
\\n\\r\\n
Total/Premium
+ DNS. Total DNS is a complete Domain Name System (\u201CDNS\u201D)
+ tool that allows you to manage your DNS and keep your website and web-based
+ applications available and performing reliably. The service is provided \u201Cas
+ is\u201D, \u201Cas available\u201D, and \u201Cwith all faults\u201D, and we
+ assume no liability or responsibility regarding the same.
\\n
In addition,
+ you specifically acknowledge and agree that we shall have no liability or
+ responsibility for any: \\r
\\n
\\r\\n- Service interruptions caused
+ by periodic maintenance, repairs or replacements of the Global Nameserver
+ Infrastructure (defined below) that we may undertake from time to time;
\\r\\n- Service
+ interruptions caused by you from custom scripting, coding, programming or
+ configurations;
\\r\\n- Service interruptions caused by you from the
+ installation of third-party applications;
\\r\\n- Service interruptions
+ that do not prevent visitors from accessing your website, but merely affect
+ your ability to make changes to your website, including but not limited to,
+ changes via mechanisms such as file transfer protocol (\u201CFTP\u201D)
+ and email; or
\\r\\n- Service interruptions beyond the reasonable control
+ of us or that are not reasonably foreseeable by us, including, but not limited
+ to, power outages, interruption or failure of telecommunication or digital
+ transmission links, hostile network attacks, network congestion or other failures.
\\r\\n
\\r\\n
Subject
+ to the provisions of Force Majeure below, we offer a service uptime guarantee
+ (\u201CService Uptime Guarantee\u201D) for paid services of 99.999%
+ availability (defined below). You shall receive service credits for any Outage
+ (defined below) of the service covered by the Service Uptime Guarantee. The
+ service credits shall be applied as extensions to the terms of the affected
+ Service. The Service Uptime Guarantee shall become effective fourteen (14)
+ days after your purchase of the Service covered by the Service Uptime Guarantee
+ to allow both parties time to properly configure and test the Service.
\\n\\r\\n
+ \
Definitions. For the purposes of the Service
+ Uptime Guarantee, the following definitions shall apply: \\r
\\n
\\r\\n- \u201CGlobal
+ Nameserver Infrastructure\u201D: The group of systems (servers, hardware,
+ and associated software) that are responsible for delivering the Services.
+ The Global Nameserver Infrastructure does not include web-based user interfaces,
+ zone transfer mechanisms, update systems, or other customer-accessible data
+ access or manipulation methods.
\\r\\n- \u201C99.999% availability\u201D:
+ \ A guarantee that the Global Nameserver Infrastructure shall be available
+ to respond to DNS queries 99.999% of the time.
\\r\\n- \u201COutage\u201D:
+ \ A period in which the Global Nameserver Infrastructure did not maintain
+ 99.999% availability.
\\r\\n
\\r\\n
Exclusions.
+ \ For the purposes of the Service Uptime Guarantee, downtime due to the following
+ events shall not be considered an Outage:
\\n
\\r\\n- Service interruptions
+ caused by \u201CRegularly Scheduled Maintenance\u201D, which shall
+ be defined as any maintenance performed on the Global Nameserver Infrastructure
+ of which customer is notified twenty-four (24) hours in advance. Email notice
+ of Regularly Scheduled Maintenance shall be provided to customer\u2019s designated
+ email address;
\\r\\n- Service interruptions caused by you from custom
+ scripting, coding, programming or configurations;
\\r\\n- Service interruptions
+ caused by you from the installation of third-party applications;
\\r\\n- Service
+ interruptions that do not prevent visitors from accessing your website, but
+ merely affect your ability to make changes to your website, including but
+ not limited to, changes via mechanisms such as file transfer protocol (\u201CFTP\u201D)
+ and email; or
\\r\\n- Service interruptions beyond the reasonable control
+ of us or that are not reasonably foreseeable by us, including, but not limited
+ to, power outages, interruption or failure of telecommunication or digital
+ transmission links, hostile network attacks, network congestion or other failures.
\\r\\n
\\r\\n
We,
+ in our sole and absolute discretion, shall determine whether an event shall
+ be considered an Outage.
\\n\\r\\n
Remedies.
+ \ For the purposes of the Service Uptime Guarantee, when the customer becomes
+ aware of an Outage, the customer shall open a ticket with our technical support
+ services within five (5) calendar days of the Outage. If we determine that
+ an Outage did occur, then the customer shall receive a service credit in the
+ amount of two (2) months for any affected Services. The service credit shall
+ be applied as an extension to the term of the affected Services. A customer\u2019s
+ Account shall not be credited more than once per month under the Service Uptime
+ Guarantee. \\r
\\n
To qualify for a service credit, you must have a
+ current and valid subscription to the Services affected, and must have an
+ Account in good standing with us. Service credits will not apply to any charges
+ or Services other than the Services for which the Service Uptime Guarantee
+ was not met. Customers with subscriptions for more than one Service will
+ not receive credits for unaffected Services. The remedies set forth herein
+ shall be the sole and exclusive remedies if we do not meet the Service Uptime
+ Guarantee.
\\n
In the event either party is unable to carry out its material
+ obligations under this Agreement by reason of Force Majeure those obligations
+ will be suspended during the continuance of the Force Majeure, provided the
+ cause of the Force Majeure is remedied as quickly as practicable. The term
+ \u201CForce Majeure\u201D means any event caused by occurrences beyond
+ a party\u2019s reasonable control, including, but not limited to, acts of
+ God, fire or flood, war, terrorism, governmental regulations, policies or
+ actions enacted or taken subsequent to execution of this Agreement, or any
+ labor, telecommunications or other utility shortage, outage or curtailment.
\\n
If
+ your Services include Domain Name System Security Extensions (\u201CDNSSEC\u201D),
+ you will be able to secure your domain names with DNSSEC. DNSSEC is designed
+ to protect you from forged DNS data so \u201Chackers\u201D cannot direct visitors
+ to your website to a forged site.
\\n
DNSSEC works by
+ using public key cryptography. You acknowledge and agree that if the keys
+ do not match, a visitor\u2019s lookup of your website may fail (and result
+ in a \u201Cwebsite not found\u201D error) and we assume no liability or responsibility
+ regarding the same. In addition, DNSSEC responses are authenticated, but
+ not encrypted. You acknowledge and agree that DNSSEC does not provide confidentiality
+ of data, and we assume no liability or responsibility regarding the same.
\\n
We
+ prohibit the running of a public recursive DNS service on any server. All
+ recursive DNS servers must be secured to allow only internal network access
+ or a limited set of IP addresses. We actively scan for the presence of public
+ recursive DNS services and reserves the right to remove any servers from the
+ network that violate this restriction.
\\n\\r\\n
Full
+ Domain Protection. The Full Domain Protection service generally allows
+ You to: \\r
\\n
\\n- replace your personal details in the WHOIS Directory
+ with the details of Domains By Proxy;
\\n- set up a private email address
+ for each domain name that you can forward, filter or block; and
\\n- lock
+ your domain name in your account.
\\n
\\n
The Full Domain Protection
+ service features are intended to: prevent domain-related spam; protect your
+ identity from third-parties; and add a higher level of security through 2-Step
+ Verification to disallow most accidental or malicious domain name transfers.
+ As set forth in Section 2(xi) of this Agreement, You acknowledge and agree
+ that you may not be permitted to purchase private or proxy TLD registrations
+ in certain markets, countries and territories or for certain TLDs. Your purchase
+ and use of Full Domain Protection is also subject to and governed by the terms
+ of the Domain Name Proxy Agreement.
\\n\\r\\n
Ultimate
+ Domain Protection (also called Full Domain Privacy and Protection).
+ The Ultimate Domain Protection service generally allows You to:
\\n
\\n- replace
+ your personal details in the WHOIS Directory with the details of Domains By
+ Proxy;
\\n- set up a private email address for each domain name that
+ you can forward, filter or block;
\\n- prevent accidental loss of a
+ domain name due to an expired credit card or invalid payment method when domain
+ is set on auto-renew; and
\\n- lock your domain name in your account.
+
\\n
\\n
The Ultimate Domain Protection service features are intended
+ to: prevent domain-related spam; protect your identity from third-parties;
+ and add a higher level of security through 2-Step Verification to disallow
+ most accidental or malicious domain name transfers.. As set forth in Section
+ 2(xi) of this Agreement, You acknowledge and agree that you may not be permitted
+ to purchase private or proxy TLD registrations in certain markets, countries
+ and territories or for certain TLDs. Your purchase and use of Ultimate Domain
+ Protection is also subject to and governed by the terms of the Domain
+ Name Proxy Agreement.
\\n\\r\\n
Ultimate Domain
+ Protection & Security. The privacy and business protection service
+ includes all the features of Full Domain Privacy and Protection, plus the
+ service generally allows You to: (i) prevent accidental loss of a domain name
+ due to an expired credit card or invalid payment method when domain is set
+ on auto-renew; (ii) lock your domain name in your account; and (iii) activate
+ Website Security Basic. The privacy and business protection service features
+ are intended to: prevent domain-related spam; protect your identity from third-parties;
+ plus add a higher level of security through 2-Step Verification to disallow
+ most accidental or malicious domain name transfers;; and provide domain name
+ protection through Website Security Basic. As set forth in Section 2(xi) of
+ this Agreement, You acknowledge and agree that you may not be permitted to
+ purchase private or proxy TLD registrations in certain markets, countries
+ and territories or for certain TLDs. Your purchase and use of Ultimate Domain
+ Protection & Security is also governed by terms of the Domain
+ Name Proxy Agreement and Website
+ Security Terms of Use
\\r\\n
Trademark Keeper (Beta)
+ Trademark Keeper is a free beta feature of your domain that (i) automatically
+ captures a record of Your homepage including any trademarks on that homepage
+ quarterly (\u201CScreen Capture(s)\u201D), and (ii) timestamps and records
+ proof of the Screen Capture(s) using blockchain technology to ensure that
+ the record is secure. Trademark Keeper also allows You to identify up to three
+ (3) individual trademarks to help You catalog Your brand assets in Your dashboard.
+ Trademark Keeper stores the Screen Capture(s) on servers provisioned by Azure
+ but does not analyze, modify or edit the Screen Capture(s). Trademark Keeper
+ stores a digital signature of the Screen Captures on a blockchain proving
+ the Screen Captures\u2019 existence at a certain time, but does not store
+ the Screen Capture itself on the blockchain. You may request a report that
+ shows a historical record of Screen Captures that have been captured by Trademark
+ Keeper. At any time, You may opt out of Trademark Keeper and delete the historical
+ record of Screen Captures. Your Screen Captures will be deleted 24 hours after
+ You disable the \u201CKeep My Data\u201D function. If you re-enable this function
+ within 24 hours, your Screen Captures may be restored. Azure may discontinue
+ the Beta feature at any time and for any reason.
\\n
YOU ACKNOWLEDGE THAT YOUR USE OF TRADEMARK KEEPER DOES NOT
+ RESULT IN AN \u201COFFICIAL\u201D TRADEMARK REGISTRATION WITH A GOVERNMENTAL
+ TRADEMARK OFFICE. YOU ACKNOWLEDGE THAT TRADEMARK KEEPER IS NOT A LEGAL SERVICE
+ AND YOU SHOULD CONSULT A TRADEMARK ATTORNEY FOR ADVICE ON HOW TO BEST PROTECT
+ YOUR TRADEMARK RIGHTS. Azure MAKES NO REPRESENTATIONS OR WARRANTIES WITH REGARDS
+ TO ANY MATTER INCLUDING THE ADMISSIBILITY OF THE SCREEN CAPTURES OR RECORDS
+ CAPTURED THROUGH TRADEMARK KEEPER.
\\n\\r\\n
12.
+ PRE-REGISTRATIONS\\r\\n\\r\\n
If you submit an application
+ for pre-registration of a domain name, Azure does not guarantee that the name
+ will be secured for you, or that you will have immediate access to the domain
+ name if secured. Azure may use third-party service providers for the pre-registration
+ services.
\\r\\n
13. PROVISIONS SPECIFIC TO .BIZ
+ REGISTRATIONS\\r\\n\\r\\n
Domain Name Dispute
+ Policy. If you reserved or registered a .BIZ domain name through
+ us, in addition to our Dispute Resolution Policy, you hereby acknowledge that
+ you have read and understood and agree to be bound by the terms and conditions
+ of the Restrictions
+ Dispute Resolution Policy applicable to the .biz TLD.
\\r\\n
The
+ RDRP sets forth the terms under which any allegation that a domain name is
+ not used primarily for business or commercial purposes shall be enforced on
+ a case-by-case basis by an independent ICANN-accredited dispute provider.
+ Registry Operator will not review, monitor, or otherwise verify that any particular
+ domain name is being used primarily for business or commercial purposes or
+ that a domain name is being used in compliance with the SUDRP or UDRP processes.
\\r\\n
+ \
One Year Registration. If you are registering a
+ .BIZ domain name and you elect to take advantage of special pricing applicable
+ to one-year registrations, we will automatically renew your domain name for
+ an additional one-year period at the end of the first year term by taking
+ payment from the Payment Method you have on file, unless you notify us that
+ you do not wish to renew. You will be notified and given the opportunity to
+ accept or decline the one-year renewal prior to your domain name expiration
+ date. In the event you decide not to renew your one-year .BIZ domain name
+ for a second year, your domain name registration will automatically revert
+ back to us and we will gain full rights of registration to such domain name.
+ You agree that if you delete or transfer your .BIZ domain name during the
+ first year, you will automatically be charged the second year renewal fees.
\\r\\n
+ \
14. PROVISIONS SPECIFIC TO .INFO REGISTRATIONS\\r\\n\\r\\n
+ \
One Year Registration. If you are registering a
+ .INFO domain name and you elect to take advantage of special pricing applicable
+ to one-year registrations, we will automatically renew your domain name for
+ an additional one-year period at the end of the first year term by taking
+ payment from the Payment Method you have on file, unless you notify us that
+ you do not wish to renew. You will be notified and given the opportunity to
+ accept or decline the one-year renewal prior to your domain name expiration
+ date. In the event you decide not to renew your one-year .INFO domain name
+ for a second year, your domain name registration will automatically revert
+ back to us and we will gain full rights of registration to such domain name.
+ You agree that if you delete or transfer your .INFO domain name during the
+ first year, you will automatically be charged the second year renewal fees.
\\r\\n
+ \
15. PROVISIONS SPECIFIC TO .NAME REGISTRATIONS\\r\\n\\r\\n
+ \
Defensive Registration. A Defensive Registration
+ is a registration designed for the protection of trademarks and service marks
+ and may be granted to prevent a third party from registering a variation of
+ a trademark or the exact trademark. If the name you wish to register is subject
+ to a Defensive Registration, you have three (3) options: (i) you may register
+ a variation of the name, (ii) you may challenge the Defensive Registration
+ under the Eligibility
+ Requirements Dispute Resolution Policy, or (iii) you may request Consent
+ from the Defensive Registrant. You can request Consent by contacting the Defensive
+ Registrant listed in the GNR Whois Directory and requesting consent to register
+ the .NAME domain name. If the Defensive Registrant grants consent, they must
+ confirm in writing that they grant consent. If the Defensive Registrant does
+ not grant consent, you may wish to challenge the Defensive Registration under
+ the ERDRP.
\\r\\n
Acceptable Use Policy. You agree
+ to be bound by the .NAME
+ Acceptable Use Policy, which is hereby incorporated by reference. Among
+ other limitations, this policy prohibits you from using your .NAME Email to
+ engage in Spamming activities. You will be limited to a maximum of five hundred
+ (500) messages sent from your .NAME at a time.
\\r\\n
16.
+ PROVISIONS SPECIFIC TO .REISE REGISTRATIONS\\r\\n\\r\\n
+ \
Domain Names registered in .REISE should be used for purposes dedicated
+ to travel topics within six months following initial Registration, e.g. utilized
+ on the Internet or otherwise used to perform a function.
\\r\\n
17.
+ PROVISIONS SPECIFIC TO .SEXY REGISTRATIONS\\r\\n\\r\\n
You
+ shall not permit content unsuitable for viewing by a minor to be viewed from
+ the main or top-level directory of a .SEXY domain name. For purposes of clarity,
+ content viewed at the main or top-level directory of a .SEXY domain name is
+ the content immediately visible if a user navigates to http://example.sexy
+ or http://www.example.sexy. No restrictions apply to the content at any other
+ page or subdirectory addressed by a .SEXY Registered Name.
\\r\\n
18.
+ COUNTRY CODE TOP LEVEL DOMAINS\\r\\n\\r\\n
You
+ represent and warrant that you meet the eligibility requirements of each ccTLD
+ you apply for. You further agree to be bound by any registry rules, policies,
+ and agreements for that particular ccTLD. These may include, but are not limited
+ to, agreeing to indemnify the ccTLD provider, limiting the liability of the
+ ccTLD provider, and requirements that any disputes be resolved under that
+ particular country's laws.
\\n
(A) PROVISIONS SPECIFIC TO
+ .AU REGISTRATIONS
\\n.au Registrations (to include .au,
+ com.au, net.au and org.au) are governed by the following additional terms
+ and conditions:
\\n
auDA. auDA means .au Domain Administration
+ Limited ACN 079 009 340, the .au domain names administrator. The Registrar
+ acts as agent for auDA for the sole purpose, but only to the extent necessary,
+ to enable auDA to receive the benefit of rights and covenants conferred to
+ it under this Agreement. auDA is an intended third party beneficiary of this
+ agreement.
\\n
\\nauDA Published Policy. auDA Published
+ Policies means those specifications and policies established and published
+ by auDA from time to time at https://www.auda.org.au.
+ \ You must comply with all auDA Published Policies, as if they were incorporated
+ into, and form part of, this Agreement. In the event of any inconsistency
+ between any auDA Published Policy and this Agreement, then the auDA Published
+ Policy will prevail to the extent of such inconsistency. You acknowledge
+ that under the auDA Published Policies: (1) there are mandatory terms and
+ conditions that apply to all domain names; (2) licences, and such terms and
+ conditions are incorporated into, and form part of, this Agreement; (3) You
+ are bound by, and must submit to, the .au Dispute Resolution Policy; and (4)
+ auDA may delete or cancel the registration of a .au domain name.
\\n
\\nauDA's Liabilities and Indemnity. To the fullest extent permitted
+ by law, auDA will not be liable to Registrant for any direct, indirect, consequential,
+ special, punitive or exemplary losses or damages of any kind (including, without
+ limitation, loss of use, loss or profit, loss or corruption of data, business
+ interruption or indirect costs) suffered by Registrant arising from, as a
+ result of, or otherwise in connection with, any act or omission whatsoever
+ of auDA, its employees, agents or contractors. Registrant agrees to indemnify,
+ keep indemnified and hold auDA, its employees, agents and contractors harmless
+ from all and any claims or liabilities, arising from, as a result of, or otherwise
+ in connection with, Registrant's registration or use of its .au domain name.
+ Nothing in this document is intended to exclude the operation of Trade Practices
+ Act 1974.
\\n\\r\\n
(B) PROVISIONS SPECIFIC
+ TO .CA REGISTRATIONS
\\nYou acknowledge and agree that
+ registration of your selected domain name in your first application to CIRA
+ shall not be effective until you have entered into and agreed to be bound
+ by CIRA's Registrant Agreement.
\\n
\\nCIRA Certified Registrar.
+ \ The registrar shall immediately give notice to you in the event that it
+ is no longer a CIRA Certified Registrar, has had its certification as a CIRA
+ Certified Registrar suspended or terminated, or the Registrar Agreement between
+ CIRA and the Registrar is terminated or expires. CIRA may post notice of such
+ suspension, termination, or expiry on its website and may, if CIRA deems appropriate,
+ give notice to the registrants thereof. In the event that the registrar is
+ no longer a CIRA Certified Registrar, has had its certification as a CIRA
+ Certified Registrar suspended or terminated or in the event the Registrar
+ Agreement between CIRA and the Registrar is terminated or expires, you shall
+ be responsible for changing your Registrar of Record to a new CIRA Certified
+ Registrar within thirty (30) days of the earlier of notice thereof being given
+ to you by (i) the Registrar or (ii) CIRA in accordance with CIRA's then current
+ Registry PRP; provided, however, that if any of your domain name registrations
+ are scheduled to expire within thirty (30) days of the giving of such notice,
+ then you shall have thirty (30) days from the anniversary date of the registration(s),
+ to register with a new CIRA certified registrar and to renew such domain name
+ registration(s) in accordance with the Registry PRP.
\\n
\\nYou
+ acknowledge and agree that should there be insufficient funds prepaid by the
+ registrar in the CIRA Deposit Account to be applied in payment of any fees,
+ CIRA may in its sole discretion stop accepting applications for domain name
+ registrations from the registrar, stop effecting registrations of domain names
+ and transfers, renewals, modifications, and cancellations requested by the
+ registrar and stop performing other billable transactions requested by the
+ registrar not paid in full and CIRA may terminate the Registrar Agreement
+ between CIRA and the Registrar.
\\n
\\n.CA ASCII and IDN
+ domain variants are bundled and reserved for a single registrant.
+ \ Registrants are not required to register all variants in a bundle, but all
+ registered variants must be registered and managed at a single registrar.
+ Each variant registered will incur a registration fee. In addition, when
+ registering multiple .CA domain (ASCII and IDN) variants in a bundle, your
+ registrant information must be identical. If variants
+ are registered at other registrars or if registrant information does not match,
+ it may result in an "unavailable" search result, delayed or failed
+ registration. If information does not match, validation is required and may
+ take up to seven business days and delay availability of domain.
\\n\\r\\n
+ \
(C) PROVISIONS SPECIFIC TO .CN REGISTRATIONS
\\n.CN is a restricted TLD \u2013 applications are subject to both a domain
+ name check and real name verification as required
+ by the People\u2019s Republic of China. Registrations in .CN are therefore
+ subject to the following additional terms:
\\n
Verification, Registration
+ and Activation. If a domain name is not permitted to be registered
+ by the Chinese government, as determined by us, the Registry Operator and/or
+ a 3rd party provider utilized for such services and determinations, in either
+ party\u2019s discretion, the application for registration will not be successful.
+ \ In such event, the name will be deleted and you will be eligible for a refund
+ as further described below.
\\n
If permitted, then the Registration may
+ proceed, but a .CN domain name may not be activated (i.e., it will not resolve
+ in the Internet) unless and until you have submitted (via
+ the process described during registration) valid documents required of us
+ and the Registry to perform real name verification. The following are acceptable
+ forms of documents for the purpose of verification:\\r\\n
\\n
- China:
+ Resident ID, temporary resident ID, business license or organization code
+ certificate
\\r\\n\\r\\n- Hong Kong/Macau: Resident ID, driver\u2019s
+ license, passport or business license
\\r\\n\\r\\n- Singapore: Driver\u2019s
+ license, passport or business license
\\r\\n\\r\\n- Taiwan: Resident
+ ID, driver\u2019s license or business license
\\r\\n\\r\\n- Other Countries/Regions:
+ Driver\u2019s license or passport
\\r\\n
Documents submitted to
+ us are used by us and shared with the Registry solely for the purpose of real
+ name verification, and are otherwise subject to our Privacy
+ Policy. By registering a .CN domain, you expressly agree that your data
+ may be stored on servers in the U.S., or otherwise outside of the People's
+ Republic of China.
\\n
Refunds. Refunds for .CN Registrations
+ will only be allowed where (i) registration of the applied for domain name
+ is not permitted by the Chinese government; or (ii) you notify us of your
+ intent to cancel for any reason within the first five (5) days after the Registration
+ (i.e., after it is deemed permissible by the Chinese government). For the
+ avoidance of doubt, refunds will not be permitted under any circumstances
+ after five (5) days from the date of Registration, including, for example,
+ in the event real name verification is not successful or if the Chinese government
+ determines after Registration that the domain name should not have been registered
+ (and directs us to delete).
\\n\\r\\n
(D) PROVISIONS
+ SPECIFIC TO .JP REGISTRATIONS
\\nRegistration
+ Restrictions. You represent and warrant that you have a local presence
+ in Japan with a home or office address. You agree that certain domain names
+ are reserved and can only be registered by certain parties. These include:
+ (i) TLDs, other than ccTLDs, as determined by ICANN; (ii) geographical-type
+ .JP domain names that are defined as metropolitan, prefectural, and municipal
+ labels; (iii) names of primary and secondary educational organizations; (iv)
+ names of organizations related to Internet management; (v) names required
+ for .JP domain name operations; and (vi) character strings which may be confused
+ with ASCII-converted Japanese domain names. The complete list of .JP Reserved
+ Domains is available here.
+
\\n\\r\\n
\\r\\n\",\"url\":\"http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=reg_sa&pl_id=510456\"},{\"agreementKey\":\"DNPA\",\"title\":\"Domains
+ by Proxy Agreement\",\"content\":\"\\r\\n\\r\\n\\r\\n\\r\\n
\\r\\n Azure
+ - DOMAINS BY PROXY - DOMAIN NAME PROXY AGREEMENT\\r\\n
\\r\\n
+ \
\\r\\n Last Revised: 6/6/2022\\r\\n
+ \
\\r\\n\\r\\n
Please read this Domain Name Proxy Agreement
+ ("Agreement") carefully. By using the Services and/or website of
+ Domains By Proxy, LLC, a Delaware limited liability company ("DBP"),
+ You (as defined below) agree to all the terms and conditions set forth both
+ herein and in the DBP privacy policy, which is incorporated by reference and
+ can be found by clicking here.
+ \ You acknowledge that DBP may amend this Agreement at any time upon posting
+ the amended terms on its website, and that any new, different or additional
+ features changing the services provided by DBP will automatically be subject
+ to this Agreement. If You do not agree to be bound by, or if You object to,
+ the terms and conditions of this Agreement and any amendments hereto, do not
+ use or access DBP's services. Continued use of DBP's services and its website
+ after any such changes to this Agreement have been posted, constitutes Your
+ acceptance of those changes. \\r
\\n
This Agreement is by and between
+ DBP and you, your heirs, assigns, agents and contractors ("You")
+ and is made effective as of the date of electronic execution. This Agreement
+ sets forth the terms and conditions of Your relationship with DBP and Your
+ use of DBP's services and represents the entire Agreement between You and
+ DBP. By using DBP's Services, You acknowledge that You have read, understand
+ and agree to be bound by all the terms and conditions of this Agreement, and
+ You further agree to be bound by the terms of this Agreement for transactions
+ entered into by: \\r
\\n
\\r\\n- You on Your behalf;
+ \ \\r\\n- Anyone acting as Your agent; and
\\r\\n- Anyone who
+ uses the account You have established with DBP, whether or not the transactions
+ were on Your behalf and/or authorized by You.
\\r\\n
\\r\\n
You
+ agree You will be bound by representations made by third parties acting on
+ Your behalf, which either use or purchase services from DBP. You further agree
+ that DBP will not be bound by statements of a general nature on DBP's website
+ or DBP promotional materials. You further agree to abide by the terms and
+ conditions promulgated by the Internet Corporation for Assigned Names and
+ Numbers ("ICANN") (including the Uniform Domain Name Dispute Resolution
+ Policy ("Dispute Resolution Policy") and Your Registrar (i.e., the
+ ICANN-accredited person or entity through which You register a domain name).
\\n\\r\\n
+ \
1 .DESCRIPTION OF DBP'S PRIVATE REGISTRATION SERVICES
+ \\r\\n\\r\\n
When You subscribe to DBP's private registration
+ service through a DBP-affiliated Registrar, DBP will display its contact information
+ in the publicly available "Whois" directory in place of Your information.
+ DBP shall keep Your name, postal address, email address, phone and fax numbers
+ confidential, subject to Section 4 of this Agreement. The following information
+ (and not Your personal information) will be made publicly available in the
+ "Whois" directory as determined by ICANN policy: \\r
\\n
\\r\\n- DBP's name as the proxy Registrant of the domain name and
+ a proxy email address, phone number and postal address for the proxy Registrant's
+ contact information;
\\r\\n- A proxy postal address and phone number
+ for the domain name registration's technical contact;
\\r\\n- A proxy
+ email address, postal address and phone number for the domain name registration's
+ administrative contact;
\\r\\n- A proxy email address, postal address
+ and phone number for the domain's name registration's billing contact;
+ \ \\r\\n- The primary and secondary domain name servers You designate for
+ the domain name;
\\r\\n- The domain name's original date of registration
+ and expiration date of the registration; and
\\r\\n- The identity
+ of the Registrar.
\\r\\n
\\r\\n
2 . FULL
+ BENEFITS OF DOMAIN REGISTRATION RETAINED BY YOU \\r\\n\\r\\n
+ \
Although DBP will show in the "Whois" directory as the Registrant
+ of each domain name registration You designate, You will retain the full benefits
+ of domain name registration with respect to each such domain name registration,
+ including, subject to Section 4 below:
\\n
\\r\\n- The right
+ to sell, transfer or assign each domain name registration, which shall require
+ cancellation of the DBP services associated with each such domain name registration;
+ \ \\r\\n- The right to control the use of each domain name registration,
+ including designating the primary and secondary domain name servers to which
+ each domain name points;
\\r\\n- The right to cancel each domain name
+ registration;
\\r\\n- The right to cancel the DBP services associated
+ with each domain name registration and/or Your privacy services with DBP so
+ that Your contract information is listed in the \\\"Whois\\\" directory; and
+ \ \\r\\n- The right to renew each domain name registration upon its expiration,
+ subject to Your Registrar's applicable rules and policies.
\\r\\n
\\r\\n\\r\\n
+ \
3 . PERSONAL INFORMATION AND YOUR NOTIFICATION OBLIGATIONS;
+ REPRESENTATION AND WARRANTIES; ACCOUNT SECURITY \\r\\n\\r\\n
+ \
Personal Information and Your Notification Obligations
+ \ \\r
\\n
You agree that for each domain name for which you use DBP services,
+ You will provide accurate and current information as to: \\r
\\n
- Your
+ name, the email address, postal address, phone and fax numbers for the domain
+ name registration's Registrant contact;
- The email address, postal
+ address, phone and fax numbers for the domain name registration's technical
+ contact;
- The email address, postal address, phone and fax numbers
+ for the domain name registration's administrative contact;
- The email
+ address, postal address, phone and fax numbers for the domain name registration's
+ billing contact; and
- You agree to provide government issued photo
+ identification and/or government issued business identification as required
+ for verification of identity when requested.
\\r\\n
You
+ agree to: \\r
\\n
- Notify DBP within three (3) calendar
+ days when any of the personal information You provided upon subscribing to
+ DBP's services, changes;
- Respond within three (3) calendar days to
+ any inquiries made by DBP to determine the validity of personal information
+ provided by You; and
- Timely respond to email messages DBP sends to
+ You regarding correspondence DBP has received that is either addressed to
+ or involves You and/or Your domain name registration, as more fully set forth
+ in Section 5(c) below.
- To allow DBP to act as your Designated Agent
+ (as that term is defined below) in instances when DBP services are added to
+ or cancelled from your domain name and for the purpose of facilitating a change
+ of registrant request (as further described below).
- As required by
+ ICANN or for certain ccTLDs (.ag, .am, .at, .au, .be, .ca, .cl, .cn, .de,
+ .dk, .es, .fi, .fm, .fr, .gg, .gr, .gs, .in, .it, .jp, .kr, .ms, .my, .no,
+ .nu, .ph, .pl, .pt, .ru, .sc, .se, .sg, .tc, .tk, .tw, .us, .vg, .co.nz, .net.nz,
+ .org.nz, .com.tw, .org.tw, .idv.tw, .com.cn, .net.cn, .org.cn, .jobs, .eu,
+ .com.ag, .net.ag, .org.ag, .com.pl, .net.pl, .org.pl, .biz.pl, .info.pl, .com.sc,
+ .net.sc, .org.sc, .com.au, .net.au, .com.br, .co.jp, .com.sg, .com.ph, .co.za,
+ .co.in, .com.pt, .org.au, .net.in, .org.in, .firm.in, .gen.in, .ind.in, .com.my,
+ .gov.co, .com.es, .com.ve, .org.ve, .com.gr, .net.my, .nom.es, .org.es, .net.br,
+ .org.co, .co.kr, .org.my, .com.ru, .net.ru, .org.ru, .co.ve, .info.ve, .net.ve,
+ .web.ve, .ne.kr, .net.ph, .org.ph, .nyc, .vote, .law, .blackfriday, .hiv,
+ .tattoo, .voto, .pics, .sydney, .flowers, .lol, .amsterdam, .hiphop, .juegos,
+ .link, .guitars, .gift, .click, .nrw, .property, .diet, .help, .sexy, .mom,
+ .audio, .game, .christmas, .photo, .hosting, .melbourne, .re.kr), we are restricted/prohibited
+ from using Domains By Proxy (i.e., Private or Proxy data) for domains under
+ these TLDs. Your information may be made publicly available by the registry
+ operator via Whois or its successor protocol (collectively referred to as
+ the \u201CWhois\\\" Directory) that is beyond, and not subject to, GoDaddy's
+ control.
\\r\\n
It is Your responsibility to keep Your personal
+ information current and accurate at all times. \\r
\\n
Renewals
\\n
\\nYou agree DBP will arrange for Your Registrar to charge the
+ credit card You have on file with the Registrar, at the Registrar's then current
+ rates.
\\n
\\nIf for any reason DBP and/or the Registrar for Your
+ domain name is unable to charge Your credit card for the full amount of the
+ service provided, or if DBP and/or the Registrar is charged back for any fee
+ it previously charged to the credit card You provided, You agree that DBP
+ and/or the Registrar may, without notice to You, pursue all available remedies
+ in order to obtain payment, including but not limited to immediate cancellation
+ of all services DBP provides to You.
\\n
\\nRepresentations
+ and Warranties
\\n
\\nYou warrant that all information
+ provided by You to DBP is truthful, complete, current and accurate. You also
+ warrant that You are using DBP's private registration services in good faith
+ and You have no knowledge of Your domain name infringing upon or conflicting
+ with the legal rights of a third party or a third party's trademark or trade
+ name. You also warrant the domain name being registered by DBP on Your behalf
+ will not be used in connection with any illegal activity, or in connection
+ with the transmission of Spam, or that contains or installs any viruses, worms,
+ bugs, Trojan horses or other code, files or programs designed to, or capable
+ or, disrupting, damaging or limiting the functionality of any software or
+ hardware.
\\n
\\nAccount Security \\r
\\n
You
+ agree You are entirely responsible for maintaining the confidentiality of
+ Your customer number/login ID and password ("Account Access Information").
+ \ You agree to notify DBP immediately of any unauthorized use of Your account
+ or any other breach of security. You agree DBP will not be liable for any
+ loss that You may incur as a result of someone else using Your Account Access
+ Information, either with or without Your knowledge. You further agree You
+ could be held liable for losses incurred by DBP or another party due to someone
+ else using Your Account Access Information. For security purposes, You should
+ keep Account Access Information in a secure location and take precautions
+ to prevent others from gaining access to Your Account Access Information.
+ \ You agree that You are entirely responsible for all activity in Your account,
+ whether initiated by You, or by others. DBP specifically disclaims liability
+ for any activity in Your account, regardless of whether You authorized the
+ activity.
\\n
\\nDesignated Agency and Change of Registrant
+ Information
\\n
\\n\u201CDESIGNATED AGENT\u201D MEANS AN
+ INDIVIDUAL OR ENTITY THAT THE PRIOR REGISTRANT OR NEW REGISTRANT EXPLICITLY
+ AUTHORIZES TO APPROVE A CHANGE OF REGISTRANT REQUEST ON ITS BEHALF. IN THE
+ CASE OF DBP SERVICES, A CHANGE OF REGISTRANT REQUEST MAY ALSO ARISE DUE TO
+ INSTANCES WHERE DBP SERVICES ARE ADDED, OR REMOVED, FROM A DOMAIN NAME. FOR
+ THE PURPOSE OF FACILITATING ANY SUCH CHANGE REQUEST, AND IN ACCORDANCE WITH
+ ICANN'S CHANGE
+ OF REGISTRANT POLICY, YOU AGREE TO APPOINT DBP AS YOUR DESIGNATED AGENT
+ FOR THE SOLE PURPOSE OF EXPLICITLY CONSENTING TO MATERIAL CHANGES OF REGISTRATION
+ CONTACT INFORMATION ON YOUR BEHALF.
\\n\\r\\n
4
+ . DBP'S RIGHTS TO DENY, SUSPEND, TERMINATE SERVICE AND TO DISCLOSE YOUR PERSONAL
+ INFORMATION \\r\\n\\r\\n
You understand and agree that
+ DBP has the absolute right and power, in its sole discretion and without any
+ liability to You whatsoever, to:
- Cancel the privacy service
+ (which means that Your information will be available in the "Whois"
+ directory) and/or reveal Your name and personal information that You provided
+ to DBP
- When required by law, in the good faith belief that such
+ action is necessary in order to conform to the edicts of the law or in the
+ interest of public safety;
- To comply with legal process served upon
+ DBP or in response to a reasonable threat of litigation against DBP (as determined
+ by DBP in its sole and absolute discretion); or
- To comply with ICANN
+ rules, policies, or procedures.
- Resolve any and all third
+ party claims, whether threatened or made, arising out of Your use of a domain
+ name for which DBP is the registrant listed in the "Whois" directory
+ on Your behalf; or
- Take any other action DBP deems necessary:
- In
+ the event you breach any provision of this Agreement or the DBP Anti-Spam
+ Policy;
- To protect the integrity and stability of, and to comply with
+ registration requirements, terms, conditions and policies of, the applicable
+ domain name Registry and/or Registry Provider;
- To comply with any
+ applicable laws, government rules or requirements, subpoenas, court orders
+ or requests of law enforcement;
- To comply with ICANN's Dispute Resolution
+ Policy or ICANN's Change of Registrant Policy;
- To avoid any financial
+ loss or legal liability (civil or criminal) on the part of DBP, its parent
+ companies, subsidiaries, affiliates, shareholders, agents, officers, directors
+ and employees;
- If the domain name for which DBP is the registrant
+ on Your behalf violates or infringes a third party's trademark, trade name
+ or other legal rights; and
- If it comes to DBP's attention that You
+ are using DBP's services in a manner (as determined by DBP in its sole and
+ absolute discretion) that:
- Is illegal, or promotes or encourages illegal
+ activity;
- Promotes, encourages, or engages in the exploitation of
+ children, or any activity related to the proliferation of child sexual abuse
+ material (CSAM);
- Promotes, encourages or engages in terrorism, violence
+ against people, animals, or property;
- Promotes, encourages or engages
+ in any spam or other unsolicited bulk email, or computer or network hacking
+ or cracking;
- Violates the Ryan Haight Online Pharmacy Consumer Protection
+ Act of 2008 or similar legislation, or promotes, encourages or engages in
+ the sale or distribution of prescription medication without a valid prescription;
-
+ Infringes on the intellectual property rights of another User or any other
+ person or entity;
- Violates the privacy or publicity rights of another
+ User or any other person or entity, or breaches any duty of confidentiality
+ that you owe to another User or any other person or entity;
- Interferes
+ with the operation of DBP services;
- Contains or installs any viruses,
+ worms, bugs, Trojan horses or other code, files or programs designed to, or
+ capable of, disrupting, damaging or limiting the functionality of any software
+ or hardware; or
- Contains false or deceptive language, or unsubstantiated
+ or comparative claims, regarding DBP or its services.
You
+ further understand and agree that if DBP is named as a defendant in, or investigated
+ in anticipation of, any legal or administrative proceeding arising out of
+ Your domain name registration or Your use of DBP's services, Your private
+ registration service may be canceled, which means the domain name registration
+ will revert back to You and Your identity will therefore be revealed in the
+ Whois directory as Registrant.
In the event:
- DBP takes
+ any of the actions set forth in subsection i, ii, or iii above or section
+ 5; and/or
- You elect to cancel DBP's services for any reason --
Neither
+ DBP nor your Registrar will refund any fees paid by You whatsoever.\\r\\n
+ \
5 . COMMUNICATIONS FORWARDING \\r\\n\\r\\n
+ \
a. Correspondence Forwarding \\r
\\n
Inasmuch
+ as DBP's name, postal address and phone number will be listed in the Whois
+ directory, You agree DBP will review and forward communications addressed
+ to Your domain name that are received via email, certified or traceable courier
+ mail (such as UPS, FedEx, or DHL), or first class U.S. postal mail. You specifically
+ acknowledge DBP will not forward to You first class postal mail (other than
+ legal notices), "junk" mail or other unsolicited communications
+ (whether delivered through email, fax, postal mail or telephone), and You
+ further authorize DBP to either discard all such communications or return
+ all such communications to sender unopened. You agree to waive any and all
+ claims arising from Your failure to receive communications directed to Your
+ domain name but not forwarded to You by DBP.
\\n
\\nb.
+ Email Forwarding
\\n
\\nThe Whois directory requires an
+ email address for every purchased domain name registration. When You purchase
+ a private domain registration, DBP creates a private email address for that
+ domain name, "@domainsbyproxy.com". Thereafter, when messages are
+ sent to that private email address, DBP handles them according to the email
+ preference You selected for that particular domain name. You have three (3)
+ email preferences from which to choose. You can elect to:
\\n
\\n
\\r\\n- Have all of the messages forwarded;
\\r\\n- Have all
+ of the messages filtered for Spam and then forwarded; or
\\r\\n- Have
+ none of the messages forwarded.
\\r\\n
\\r\\n
\\nAs with all
+ communications, You agree to waive any and all claims arising from Your failure
+ to receive email directed to Your domain name but not forwarded to You by
+ DBP.
\\n
c. Notifications Regarding Correspondence and Your Obligation
+ to Respond
\\nWhen DBP receives certified or traceable courier
+ mail or legal notices addressed to Your domain name, in most cases, DBP will
+ attempt to forward the mail to you via email. If You do not respond to the
+ DBP email and/or the correspondence DBP has received regarding Your domain
+ name registration concerns a dispute of any kind or otherwise requires immediate
+ disposition, DBP may immediately reveal Your identity and/or cancel the DBP
+ private registration service regarding either the domain name registration(s)
+ in question. This means the Whois directory will revert to displaying Your
+ name, postal address, email address and phone number that you provided to
+ DBP.
\\n
\\nd. Additional Administrative Fees
\\n
\\nDBP reserves the right to charge You reasonable "administrative
+ fees" or "processing fees" for (i) tasks DBP may perform outside
+ the normal scope of its Services, (ii) additional time and/or costs DBP may
+ incur in providing its Services, and/or (iii) Your non-compliance with the
+ Agreement (as determined by DBP in its sole and absolute discretion). Typical
+ administrative or processing fee scenarios include, but are not limited to,
+ (i) customer service issues that require additional personal time and attention;
+ (ii) disputes that require accounting or legal services, whether performed
+ by DBP staff or by outside firms retained by DBP; (iii) recouping any and
+ all costs and fees, including the cost of Services, incurred by DBP as the
+ result of chargebacks or other payment disputes brought by You, Your bank
+ or Payment Method processor. These administrative fees or processing fees
+ will be billed to the Payment Method You have on file with Your Registrar.
\\n
You
+ agree to waive the right to trial by jury in any proceeding that takes place
+ relating to or arising out of this Agreement.
\\n\\r\\n
6
+ . LIMITATIONS OF LIABILITY \\r\\n\\r\\n
UNDER NO
+ CIRCUMSTANCES SHALL DBP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, PUNITIVE,
+ SPECIAL, OR CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER RELATED TO THIS
+ AGREEMENT, YOUR DOMAIN NAME REGISTRATION, DBP'S SERVICES, USE OR INABILITY
+ TO USE THE DBP WEBSITE OR THE MATERIALS AND CONTENT OF THE WEBSITE OR ANY
+ OTHER WEBSITES LINKED TO THE DBP WEBSITE OR YOUR PROVISION OF ANY PERSONALLY
+ IDENTIFIABLE INFORMATION TO DBP OR ANY THIRD PARTY. THIS LIMITATION APPLIES
+ REGARDLESS OF WHETHER THE ALLEGED LIABILITY IS BASED ON CONTRACT, TORT, WARRANTY,
+ NEGLIGENCE, STRICT LIABILITY OR ANY OTHER BASIS, EVEN IF DBP HAS BEEN ADVISED
+ OF THE POSSIBILITY OF SUCH DAMAGES OR SUCH DAMAGES WERE REASONABLY FORESEEABLE.
+ BECAUSE CERTAIN JURISDICTIONS DO NOT PERMIT THE LIMITATION OR ELIMINATION
+ OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, DBP'S LIABILITY IN SUCH
+ JURISDICTIONS SHALL BE LIMITED TO THE SMALLEST AMOUNT PERMITTED BY LAW.
\\n
\\nYOU FURTHER UNDERSTAND AND AGREE THAT DBP DISCLAIMS ANY LOSS
+ OR LIABILITY RESULTING FROM:\\r\\n
\\n
\\r\\n - THE INADVERTENT
+ DISCLOSURE OR THEFT OF YOUR PERSONAL INFORMATION;
\\r\\n - ACCESS
+ DELAYS OR INTERRUPTIONS TO OUR WEBSITE OR THE WEBSITES OF OUR AFFILIATED REGISTRARS;
\\r\\n
+ \ - DATA NON-DELIVERY OF MIS-DELIVERY BETWEEN YOU AND DBP;
\\r\\n
+ \ - THE FAILURE FOR WHATEVER REASON TO RENEW A PRIVATE DOMAIN NAME REGISTRATION;
\\r\\n
+ \ - THE UNAUTHORIZED USE OF YOUR DBP ACCOUNT OR ANY OF DBP'S SERVICES;
\\r\\n
+ \ - ERRORS, OMISSIONS OR MISSTATEMENTS BY DBP;
\\r\\n - DELETION
+ OF, FAILURE TO STORE, FAILURE TO PROCESS OR ACT UPON EMAIL MESSAGES FORWARDED
+ TO EITHER YOU OR YOUR PRIVATE DOMAIN NAME REGISTRATION;
\\r\\n - PROCESSING
+ OF UPDATED INFORMATION REGARDING YOUR DBP ACCOUNT; AND/OR
\\r\\n - ANY
+ ACT OR OMISSION CAUSED BY YOU OR YOUR AGENTS (WHETHER AUTHORIZED BY YOU OR
+ NOT).
\\r\\n
\\r\\n
7 . INDEMNITY
+ \ \\r\\n\\r\\n
You agree to release, defend, indemnify and hold
+ harmless DBP, its parent companies, subsidiaries, affiliates, shareholders,
+ agents, directors, officers and employees and Your Registrar, from and against
+ any and all claims, demands, liabilities, losses, damages or costs, including
+ reasonable attorneys' fees, arising out of or related in any way to this Agreement,
+ the services provided hereunder by DBP, the DBP website, Your account with
+ DBP, Your use of Your domain name registration, and/or disputes arising in
+ connection with the dispute
+ policy.
\\r\\n
8 . DBP WARRANTY DISCLAIMER
+ \ \\r\\n\\r\\n
DBP, ITS PARENT COMPANIES, SUBSIDIARIES,
+ AFFILIATES, SHAREHOLDERS, AGENTS, DIRECTORS, OFFICERS, AND EMPLOYEES EXPRESSLY
+ DISCLAIM ALL REPRESENTATIONS AND WARRANTIES OF ANY KIND IN CONNECTION WITH
+ THIS AGREEMENT, THE SERVICE PROVIDED HEREUNDER, THE DBP WEBSITE OR ANY WEBSITES
+ LINKED TO THE DBP WEBSITE, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE AND NON-INFRINGEMENT. ALL DBP SERVICES, AS WELL AS THE DBP WEBSITE,
+ ARE PROVIDED "AS IS". YOUR SUBSCRIPTION TO AND USE OF DBP'S SERVICES
+ AND ITS WEBSITE ARE ENTIRELY AT YOUR RISK. SOME JURISDICTIONS DO NOT ALLOW
+ THE DISCLAIMER OF IMPLIED WARRANTIES, IN WHICH EVENT THE FOREGOING DISCLAIMER
+ MAY NOT APPLY TO YOU.
\\r\\n
9 .COPYRIGHT
+ AND TRADEMARK \\r\\n\\r\\n
You understand and agree
+ that all content and materials contained in this Agreement, the Privacy
+ Policy and the DBP website found
+ here, are protected by the various copyright, patent, trademark, service
+ mark and trade secret laws of the United States, as well as any other applicable
+ proprietary rights and laws, and that DBP expressly reserves its rights in
+ and to all such content and materials.
\\n
\\nYou further understand
+ and agree You are prohibited from using, in any manner whatsoever, any of
+ the afore-described content and materials without the express written permission
+ of DBP. No license or right under any copyright, patent, trademark, service
+ mark or other proprietary right or license is granted to You or conferred
+ upon You by this Agreement or otherwise.
\\n\\r\\n
10
+ . MISCELLANEOUS PROVISIONS \\r\\n\\r\\n
a.
+ Severability; Construction; Entire Agreement
\\n
\\nIf
+ any part of this Agreement shall be held to be illegal, unenforceable or invalid,
+ in whole or in part, such provision shall be modified to the minimum extent
+ necessary to make it legal, enforceable and valid, and the legality, enforceability
+ and validity of the remaining provisions of this Agreement shall not be affected
+ or impaired. The headings herein will not be considered a part of this Agreement.
+ You agree this Agreement, including the policies it incorporates by reference,
+ constitute the complete and only Agreement between You and DBP regarding the
+ services contemplated herein. \\r
\\n
b. Governing Law; Venue;
+ Waiver Of Trial By Jury
\\n
\\nThis Agreement shall be
+ governed in all respects by the laws and judicial decisions of Maricopa County,
+ Arizona, excluding its conflicts of laws rules. Except as provided immediately
+ below, You agree that any action relating to or arising out of this Agreement,
+ shall be brought exclusively in the courts of Maricopa County, Arizona. For
+ the adjudication of domain name registration disputes, you agree to submit
+ to the exclusive jurisdiction and venue of the U.S. District Court for the
+ District of Arizona located in Phoenix, Arizona. You agree to waive the right
+ to trial by jury in any proceeding, regardless of venue, that takes place
+ relating to or arising out of this Agreement.
\\n
\\nc.
+ Notices
\\n
\\nAll notices from DBP to You will be sent
+ to the email address You provided to DBP. Notices by email shall be deemed
+ effective twenty-four (24) hours after the email is sent by DBP, unless DBP
+ receives notice that the email address is invalid, in which event DBP may
+ give You notice via first class or certified mail, return receipt requested.
+ All notices from You to DBP shall be sent via certified mail, return receipt
+ requested or traceable courier to: \\r
\\n
Domains By Proxy, LLC
\\nAttn: General Counsel
\\n2150 E. Warner Rd.
\\nTempe, AZ 85284
+ USA
\\n
Notices sent via certified mail or traceable courier shall be
+ deemed effective five (5) days after the date of mailing.
\\n
\\nd.
+ Insurance
\\n
\\nIn the unlikely event You lose Your
+ domain name registration to a third party solely as a result of DBP's negligent
+ actions (and absent fraud or other negligent or willful misconduct committed
+ by a third party), You may be insured against such loss through DBP's Professional
+ Liability Insurance Policy, which is currently underwritten by American International
+ Insurance Company. Of course, every claim is subject to the then-carrier's
+ investigation into the facts and circumstances surrounding such claim. In
+ the event You have reason to believe that circumstances exist which warrant
+ the filing of an insurance claim, please send a written notice (specifying
+ the basis for such claim), via certified mail, return receipt requested, to:
\\n
\\nDomains By Proxy, LLC
\\nAttn: Insurance Claims
\\n2150
+ E. Warner Rd.
\\nTempe, AZ 85284 USA
\\n
e. Indemnification
+
\\n
\\nIn the unlikely event You lose Your domain name registration
+ to a third party solely as a result of DBP's willful misconduct, Your Registrar
+ (the "Indemnifying Party") will indemnify and hold You harmless
+ against any losses, damages or costs (including reasonable attorneys' fees)
+ resulting from any claim, action, proceeding, suit or demand arising out of
+ or related to the loss of Your domain name registration. Such indemnification
+ obligations under this Section 10(e) are conditioned upon the following:
\\n
\\n
\\n
\\r\\n- That You promptly give both DBP
+ and the Indemnifying Party written notice of the claim, demand, or action
+ and provide reasonable assistance to the Indemnifying Party, at its cost and
+ expense, in connection therewith, and
\\r\\n- That the Indemnifying
+ Party has the right, at its option, to control and direct the defense to any
+ settlement of such claim, demand, or action.
\\r\\n
\\r\\n
\\n
\\nAny notice concerning indemnification shall, with respect to
+ DBP, be sent in accordance with Section 10(c) of this Agreement. With respect
+ to Your Registrar, notices regarding indemnification should be sent in accordance
+ with the notification provisions contained in Your Registrar's Domain Name
+ Registration Agreement. \\r
\\n
f. Term of Agreement; Survival
\\n
\\nThe terms of this Agreement shall continue in full force and
+ effect as long as DBP is the Registrant for any domain name on Your behalf.
+ Sections 5 (Communications Forwarding), 6 (Limitation of Liability), 7 (Indemnity),
+ 8 (Warranty Disclaimer) and 10 (Miscellaneous Provisions) shall survive any
+ termination or expiration of this Agreement.
\\n\\r\\n
\\r\\n\",\"url\":\"http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=domain_nameproxy&pl_id=510456\"}],\"nextLink\":null,\"id\":null}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '124210'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jun 2022 20:46:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources":
+ [{"type": "Microsoft.Network/dnszones", "name": "containerapp000003.com", "apiVersion":
+ "2018-05-01", "location": "global", "dependsOn": [], "properties": {"zoneType":
+ "Public"}}, {"type": "Microsoft.DomainRegistration/domains", "name": "containerapp000003.com",
+ "apiVersion": "2018-02-01", "location": "global", "dependsOn": ["[resourceId(''Microsoft.Network/dnszones'',
+ ''containerapp000003.com'')]"], "tags": {}, "properties": {"consent": {"agreementKeys":
+ ["DNRA", "DNPA"], "agreedBy": "10.16.176.66", "agreedAt": "2022-06-22 20:46:13.896947"},
+ "ContactAdmin": {"AddressMailing": {"Address1": "One Microsoft Way", "Address2":
+ "", "City": "Seattle", "Country": "US", "PostalCode": "98109", "State": "WA"},
+ "Email": "testemail@hotmail.com", "Fax": "", "JobTitle": "", "NameFirst": "Jane",
+ "NameLast": "Doe", "NameMiddle": "", "Organization": "", "Phone": "+1.2061234567"},
+ "ContactBilling": {"AddressMailing": {"Address1": "One Microsoft Way", "Address2":
+ "", "City": "Seattle", "Country": "US", "PostalCode": "98109", "State": "WA"},
+ "Email": "testemail@hotmail.com", "Fax": "", "JobTitle": "", "NameFirst": "Jane",
+ "NameLast": "Doe", "NameMiddle": "", "Organization": "", "Phone": "+1.2061234567"},
+ "ContactRegistrant": {"AddressMailing": {"Address1": "One Microsoft Way", "Address2":
+ "", "City": "Seattle", "Country": "US", "PostalCode": "98109", "State": "WA"},
+ "Email": "testemail@hotmail.com", "Fax": "", "JobTitle": "", "NameFirst": "Jane",
+ "NameLast": "Doe", "NameMiddle": "", "Organization": "", "Phone": "+1.2061234567"},
+ "ContactTech": {"AddressMailing": {"Address1": "One Microsoft Way", "Address2":
+ "", "City": "Seattle", "Country": "US", "PostalCode": "98109", "State": "WA"},
+ "Email": "testemail@hotmail.com", "Fax": "", "JobTitle": "", "NameFirst": "Jane",
+ "NameLast": "Doe", "NameMiddle": "", "Organization": "", "Phone": "+1.2061234567"},
+ "privacy": 1, "autoRenew": 1, "dnsType": "AzureDns", "targetDnsType": "AzureDns",
+ "dnsZoneId": "[resourceId(''Microsoft.Network/dnszones'', ''containerapp000003.com'')]"},
+ "resources": []}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2299'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domain_deploy_EAx43BEB8n9UPCOL9dGNgp9gBa8aoCrw","name":"domain_deploy_EAx43BEB8n9UPCOL9dGNgp9gBa8aoCrw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2643630373321483844","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-06-22T20:46:20.2547517Z","duration":"PT0.0004473S","correlationId":"6911ccb8-762e-4d0d-9600-5aa510836192","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"dnszones","locations":["global"]}]},{"namespace":"Microsoft.DomainRegistration","resourceTypes":[{"resourceType":"domains","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnszones/containerapp000003.com","resourceType":"Microsoft.Network/dnszones","resourceName":"containerapp000003.com"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DomainRegistration/domains/containerapp000003.com","resourceType":"Microsoft.DomainRegistration/domains","resourceName":"containerapp000003.com"}]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domain_deploy_EAx43BEB8n9UPCOL9dGNgp9gBa8aoCrw/operationStatuses/08585456761089172300?api-version=2021-04-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1277'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456761089172300?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456761089172300?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:47:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456761089172300?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:47:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456761089172300?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:48:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585456761089172300?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:48:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domain_deploy_EAx43BEB8n9UPCOL9dGNgp9gBa8aoCrw","name":"domain_deploy_EAx43BEB8n9UPCOL9dGNgp9gBa8aoCrw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2643630373321483844","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-06-22T20:48:40.6473713Z","duration":"PT2M20.3930669S","correlationId":"6911ccb8-762e-4d0d-9600-5aa510836192","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"dnszones","locations":["global"]}]},{"namespace":"Microsoft.DomainRegistration","resourceTypes":[{"resourceType":"domains","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnszones/containerapp000003.com","resourceType":"Microsoft.Network/dnszones","resourceName":"containerapp000003.com"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DomainRegistration/domains/containerapp000003.com","resourceType":"Microsoft.DomainRegistration/domains","resourceName":"containerapp000003.com"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DomainRegistration/domains/containerapp000003.com"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnszones/containerapp000003.com"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1630'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:48:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network dns record-set txt add-record
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -z -n -v
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-dns/8.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnsZones/containerapp000003.com/txt/asuid.devtest?api-version=2018-05-01
+ response:
+ body:
+ string: '{"code":"NotFound","message":"The resource record ''asuid.devtest''
+ does not exist in resource group ''clitest.rg000001'' of subscription ''9b345226-dedc-4977-baeb-ea15d01b863d''."}'
+ headers:
+ cache-control:
+ - private
+ content-length:
+ - '175'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:48:55 GMT
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E"]}]}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network dns record-set txt add-record
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '126'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -z -n -v
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-dns/8.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnsZones/containerapp000003.com/txt/asuid.devtest?api-version=2018-05-01
+ response:
+ body:
+ string: '{"id":"\/subscriptions\/00000000-0000-0000-0000-000000000000\/resourceGroups\/clitest.rg000001\/providers\/Microsoft.Network\/dnszones\/containerapp000003.com\/TXT\/asuid.devtest","name":"asuid.devtest","type":"Microsoft.Network\/dnszones\/TXT","etag":"4226d9c9-b186-40b8-a809-f8ecc49120af","properties":{"fqdn":"asuid.devtest.containerapp000003.com.","TTL":3600,"TXTRecords":[{"value":["99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E"]}],"targetResource":{},"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - private
+ content-length:
+ - '510'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:48:56 GMT
+ etag:
+ - 4226d9c9-b186-40b8-a809-f8ecc49120af
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network dns record-set txt add-record
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -z -n -v
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-dns/8.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnsZones/containerapp000003.com/txt/asuid.clitest?api-version=2018-05-01
+ response:
+ body:
+ string: '{"code":"NotFound","message":"The resource record ''asuid.clitest''
+ does not exist in resource group ''clitest.rg000001'' of subscription ''9b345226-dedc-4977-baeb-ea15d01b863d''."}'
+ headers:
+ cache-control:
+ - private
+ content-length:
+ - '175'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:48:59 GMT
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E"]}]}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network dns record-set txt add-record
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '126'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -z -n -v
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-dns/8.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnsZones/containerapp000003.com/txt/asuid.clitest?api-version=2018-05-01
+ response:
+ body:
+ string: '{"id":"\/subscriptions\/00000000-0000-0000-0000-000000000000\/resourceGroups\/clitest.rg000001\/providers\/Microsoft.Network\/dnszones\/containerapp000003.com\/TXT\/asuid.clitest","name":"asuid.clitest","type":"Microsoft.Network\/dnszones\/TXT","etag":"a3e9bc0f-df7e-4971-9fe9-db582569d1f5","properties":{"fqdn":"asuid.clitest.containerapp000003.com.","TTL":3600,"TXTRecords":[{"value":["99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E"]}],"targetResource":{},"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - private
+ content-length:
+ - '510'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:49:00 GMT
+ etag:
+ - a3e9bc0f-df7e-4971-9fe9-db582569d1f5
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp ssl upload
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --hostname --certificate-file --password
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:49:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp ssl upload
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -n -g --environment --hostname --certificate-file --password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/listCustomHostNameAnalysis?api-version=2022-03-01&customHostname=devtest.containerapp000003.com
+ response:
+ body:
+ string: '{"isHostnameAlreadyVerified":false,"customDomainVerificationTest":"Passed","hasConflictOnManagedEnvironment":false,"cNameRecords":[],"txtRecords":[],"aRecords":[],"alternateTxtRecords":["99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E"]}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '254'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:49:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp ssl upload
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --hostname --certificate-file --password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:24.126955","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:24.126955"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.76.161.200","20.76.160.148","20.76.161.106"],"latestRevisionName":"containerapp000003--8k2riv1","latestRevisionFqdn":"containerapp000003--8k2riv1.livelyforest-bb132ae6.westeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.livelyforest-bb132ae6.westeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1514'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:49:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp ssl upload
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --hostname --certificate-file --password
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:49:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_storage.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_storage.yaml
index 82f0829b2e4..324dafcec4a 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_storage.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_storage.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-12T21:08:48Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-21T19:04:02Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:08:50 GMT
+ - Tue, 21 Jun 2022 19:04:05 GMT
expires:
- '-1'
pragma:
@@ -60,22 +60,22 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000005?api-version=2021-12-01-preview
response:
body:
string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\":
- \"615eec8d-4247-4bd4-b807-e5c08d185b5d\",\r\n \"provisioningState\": \"Creating\",\r\n
+ \"8b108f61-a0e6-465e-a339-572aa96a67ee\",\r\n \"provisioningState\": \"Creating\",\r\n
\ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\":
- \"Thu, 12 May 2022 21:08:53 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
+ \"Tue, 21 Jun 2022 19:04:09 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
\ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n
\ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n
\ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\":
- \"Fri, 13 May 2022 14:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
+ \"Wed, 22 Jun 2022 08:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
\ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\":
- \"Enabled\",\r\n \"createdDate\": \"Thu, 12 May 2022 21:08:53 GMT\",\r\n
- \ \"modifiedDate\": \"Thu, 12 May 2022 21:08:53 GMT\"\r\n },\r\n \"id\":
+ \"Enabled\",\r\n \"createdDate\": \"Tue, 21 Jun 2022 19:04:09 GMT\",\r\n
+ \ \"modifiedDate\": \"Tue, 21 Jun 2022 19:04:09 GMT\"\r\n },\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000005\",\r\n
\ \"name\": \"containerapp-env000005\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n
\ \"location\": \"eastus\"\r\n}"
@@ -87,7 +87,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 May 2022 21:08:52 GMT
+ - Tue, 21 Jun 2022 19:04:10 GMT
pragma:
- no-cache
server:
@@ -119,22 +119,22 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000005?api-version=2021-12-01-preview
response:
body:
string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\":
- \"615eec8d-4247-4bd4-b807-e5c08d185b5d\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"8b108f61-a0e6-465e-a339-572aa96a67ee\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\":
- \"Thu, 12 May 2022 21:08:53 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
+ \"Tue, 21 Jun 2022 19:04:09 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
\ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n
\ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n
\ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\":
- \"Fri, 13 May 2022 14:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
+ \"Wed, 22 Jun 2022 08:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
\ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\":
- \"Enabled\",\r\n \"createdDate\": \"Thu, 12 May 2022 21:08:53 GMT\",\r\n
- \ \"modifiedDate\": \"Thu, 12 May 2022 21:08:54 GMT\"\r\n },\r\n \"id\":
+ \"Enabled\",\r\n \"createdDate\": \"Tue, 21 Jun 2022 19:04:09 GMT\",\r\n
+ \ \"modifiedDate\": \"Tue, 21 Jun 2022 19:04:11 GMT\"\r\n },\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000005\",\r\n
\ \"name\": \"containerapp-env000005\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n
\ \"location\": \"eastus\"\r\n}"
@@ -146,7 +146,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 May 2022 21:09:23 GMT
+ - Tue, 21 Jun 2022 19:04:40 GMT
pragma:
- no-cache
server:
@@ -182,13 +182,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000005/sharedKeys?api-version=2020-08-01
response:
body:
- string: "{\r\n \"primarySharedKey\": \"HWhig3UmucPMqA0s21VaLJIsWOqcOZQxAdAMfgJ7La7vCjoablRZb1oqLyaaHjAeaulopHvFkN5XmAGYQowWjw==\",\r\n
- \ \"secondarySharedKey\": \"T8EUHgQMrRGbANyfzaW64f+Mc4JD2rfKU77hMhFx3ZtIEXbpFqJ990z35K79FxBmX53Q5zTfyqyEYW0gcjCHwg==\"\r\n}"
+ string: "{\r\n \"primarySharedKey\": \"ZUY49MTqFBeSZNqvS2cyiUL0KH+ZeWHmOyVzehkyPWA7/2k1PrXngFhZLbUa+dugExvhahz4CtRZN81mnN+ioA==\",\r\n
+ \ \"secondarySharedKey\": \"r4hXpnR4Z0DLxTnodtqecGNN8i5YJ7NoQX74DyKqw0kOivhrIMaJmmHyuGYLGnaMfbUMQj99NxM93+Jcv1cYGw==\"\r\n}"
headers:
cache-control:
- no-cache
@@ -199,7 +199,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:09:24 GMT
+ - Tue, 21 Jun 2022 19:04:41 GMT
expires:
- '-1'
pragma:
@@ -239,12 +239,12 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-12T21:08:48Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-21T19:04:02Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -253,7 +253,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:09:24 GMT
+ - Tue, 21 Jun 2022 19:04:42 GMT
expires:
- '-1'
pragma:
@@ -281,41 +281,57 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:09:25 GMT
+ - Tue, 21 Jun 2022 19:04:43 GMT
expires:
- '-1'
pragma:
@@ -343,41 +359,57 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:09:24 GMT
+ - Tue, 21 Jun 2022 19:04:42 GMT
expires:
- '-1'
pragma:
@@ -392,13 +424,13 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus", "tags": null, "properties": {"daprAIInstrumentationKey":
- null, "vnetConfiguration": null, "internalLoadBalancerEnabled": false, "appLogsConfiguration":
- {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "615eec8d-4247-4bd4-b807-e5c08d185b5d", "sharedKey": "HWhig3UmucPMqA0s21VaLJIsWOqcOZQxAdAMfgJ7La7vCjoablRZb1oqLyaaHjAeaulopHvFkN5XmAGYQowWjw=="}}}}'
+ body: '{"location": "eastus", "properties": {"vnetConfiguration": {"internal":
+ false}, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration":
+ {"customerId": "8b108f61-a0e6-465e-a339-572aa96a67ee", "sharedKey": "ZUY49MTqFBeSZNqvS2cyiUL0KH+ZeWHmOyVzehkyPWA7/2k1PrXngFhZLbUa+dugExvhahz4CtRZN81mnN+ioA=="}},
+ "zoneRedundant": false}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -406,31 +438,31 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '399'
+ - '352'
Content-Type:
- application/json
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-21T19:04:45.2317015Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-21T19:04:45.2317015Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"ambitiousrock-ee355c1e.eastus.azurecontainerapps.io","staticIp":"52.142.18.196","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"8b108f61-a0e6-465e-a339-572aa96a67ee"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bbef8678-0c3c-498f-808a-118d6bb51145?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/ca5643c3-8c04-4914-9dd3-42ace17c2b14?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '792'
+ - '799'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:09:27 GMT
+ - Tue, 21 Jun 2022 19:04:46 GMT
expires:
- '-1'
pragma:
@@ -464,423 +496,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '790'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 21:09:29 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '790'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 21:09:32 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '790'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 21:09:35 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '790'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 21:09:38 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '790'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 21:09:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '790'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 21:09:44 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '790'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 21:09:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '790'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 21:09:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/ca5643c3-8c04-4914-9dd3-42ace17c2b14?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/ca5643c3-8c04-4914-9dd3-42ace17c2b14","name":"ca5643c3-8c04-4914-9dd3-42ace17c2b14","status":"InProgress","startTime":"2022-06-21T19:04:46.2003589"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '790'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:09:52 GMT
+ - Tue, 21 Jun 2022 19:04:51 GMT
expires:
- '-1'
pragma:
@@ -914,23 +546,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/ca5643c3-8c04-4914-9dd3-42ace17c2b14?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/ca5643c3-8c04-4914-9dd3-42ace17c2b14","name":"ca5643c3-8c04-4914-9dd3-42ace17c2b14","status":"InProgress","startTime":"2022-06-21T19:04:46.2003589"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '790'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:09:56 GMT
+ - Tue, 21 Jun 2022 19:05:22 GMT
expires:
- '-1'
pragma:
@@ -964,23 +596,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/ca5643c3-8c04-4914-9dd3-42ace17c2b14?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/ca5643c3-8c04-4914-9dd3-42ace17c2b14","name":"ca5643c3-8c04-4914-9dd3-42ace17c2b14","status":"InProgress","startTime":"2022-06-21T19:04:46.2003589"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '790'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:09:59 GMT
+ - Tue, 21 Jun 2022 19:05:51 GMT
expires:
- '-1'
pragma:
@@ -1014,23 +646,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/ca5643c3-8c04-4914-9dd3-42ace17c2b14?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Waiting","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/ca5643c3-8c04-4914-9dd3-42ace17c2b14","name":"ca5643c3-8c04-4914-9dd3-42ace17c2b14","status":"Succeeded","startTime":"2022-06-21T19:04:46.2003589"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '790'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:02 GMT
+ - Tue, 21 Jun 2022 19:06:21 GMT
expires:
- '-1'
pragma:
@@ -1064,23 +696,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Succeeded","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-21T19:04:45.2317015","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-21T19:04:45.2317015"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ambitiousrock-ee355c1e.eastus.azurecontainerapps.io","staticIp":"52.142.18.196","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"8b108f61-a0e6-465e-a339-572aa96a67ee"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '792'
+ - '799'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:05 GMT
+ - Tue, 21 Jun 2022 19:06:22 GMT
expires:
- '-1'
pragma:
@@ -1114,41 +746,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:06 GMT
+ - Tue, 21 Jun 2022 19:06:23 GMT
expires:
- '-1'
pragma:
@@ -1166,7 +814,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1176,23 +824,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T21:09:27.2242746","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T21:09:27.2242746"},"properties":{"provisioningState":"Succeeded","defaultDomain":"blacksky-9a532b44.eastus.azurecontainerapps.io","staticIp":"20.102.22.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"615eec8d-4247-4bd4-b807-e5c08d185b5d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-21T19:04:45.2317015","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-21T19:04:45.2317015"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ambitiousrock-ee355c1e.eastus.azurecontainerapps.io","staticIp":"52.142.18.196","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"8b108f61-a0e6-465e-a339-572aa96a67ee"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '792'
+ - '799'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:06 GMT
+ - Tue, 21 Jun 2022 19:06:24 GMT
expires:
- '-1'
pragma:
@@ -1226,12 +874,12 @@ interactions:
ParameterSetName:
- -g -n --kind --sku --enable-large-file-share
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-12T21:08:48Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-21T19:04:02Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1240,7 +888,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:11 GMT
+ - Tue, 21 Jun 2022 19:06:26 GMT
expires:
- '-1'
pragma:
@@ -1274,7 +922,7 @@ interactions:
ParameterSetName:
- -g -n --kind --sku --enable-large-file-share
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storage000003?api-version=2021-09-01
response:
@@ -1288,11 +936,11 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:15 GMT
+ - Tue, 21 Jun 2022 19:06:29 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/4bcab18a-4d14-4de6-85c2-330226291aab?monitor=true&api-version=2021-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/d18a199b-7912-4ee2-b156-04fcefc781f7?monitor=true&api-version=2021-09-01
pragma:
- no-cache
server:
@@ -1320,12 +968,12 @@ interactions:
ParameterSetName:
- -g -n --kind --sku --enable-large-file-share
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/4bcab18a-4d14-4de6-85c2-330226291aab?monitor=true&api-version=2021-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/d18a199b-7912-4ee2-b156-04fcefc781f7?monitor=true&api-version=2021-09-01
response:
body:
- string: '{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storage000003","name":"storage000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-12T21:10:14.3024548Z","key2":"2022-05-12T21:10:14.3024548Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T21:10:14.3180588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T21:10:14.3180588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T21:10:14.1774115Z","primaryEndpoints":{"dfs":"https://storage000003.dfs.core.windows.net/","web":"https://storage000003.z13.web.core.windows.net/","blob":"https://storage000003.blob.core.windows.net/","queue":"https://storage000003.queue.core.windows.net/","table":"https://storage000003.table.core.windows.net/","file":"https://storage000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storage000003","name":"storage000003","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-21T19:06:28.8141428Z","key2":"2022-06-21T19:06:28.8141428Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T19:06:28.8141428Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T19:06:28.8141428Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-21T19:06:28.6578820Z","primaryEndpoints":{"dfs":"https://storage000003.dfs.core.windows.net/","web":"https://storage000003.z13.web.core.windows.net/","blob":"https://storage000003.blob.core.windows.net/","queue":"https://storage000003.queue.core.windows.net/","table":"https://storage000003.table.core.windows.net/","file":"https://storage000003.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -1334,7 +982,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 May 2022 21:10:32 GMT
+ - Tue, 21 Jun 2022 19:06:47 GMT
expires:
- '-1'
pragma:
@@ -1370,7 +1018,7 @@ interactions:
ParameterSetName:
- -g -n --storage-account --access-tier --quota
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storage000003/fileServices/default/shares/share000004?api-version=2021-09-01
response:
@@ -1384,9 +1032,9 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 May 2022 21:10:33 GMT
+ - Tue, 21 Jun 2022 19:06:48 GMT
etag:
- - '"0x8DA345BDAB1A5E0"'
+ - '"0x8DA53B9317BBD36"'
expires:
- '-1'
pragma:
@@ -1418,12 +1066,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/storage000003/listKeys?api-version=2021-09-01&$expand=kerb
response:
body:
- string: '{"keys":[{"creationTime":"2022-05-12T21:10:14.3024548Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-12T21:10:14.3024548Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
+ string: '{"keys":[{"creationTime":"2022-06-21T19:06:28.8141428Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-06-21T19:06:28.8141428Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
headers:
cache-control:
- no-cache
@@ -1432,7 +1080,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 May 2022 21:10:35 GMT
+ - Tue, 21 Jun 2022 19:06:49 GMT
expires:
- '-1'
pragma:
@@ -1467,41 +1115,57 @@ interactions:
- -g -n --storage-name --azure-file-account-name --azure-file-account-key --access-mode
--azure-file-share-name
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:35 GMT
+ - Tue, 21 Jun 2022 19:06:50 GMT
expires:
- '-1'
pragma:
@@ -1519,7 +1183,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1530,7 +1194,7 @@ interactions:
- -g -n --storage-name --azure-file-account-name --azure-file-account-key --access-mode
--azure-file-share-name
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages/storage000003?api-version=2022-03-01
response:
@@ -1539,7 +1203,7 @@ interactions:
not found under managed environment"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
@@ -1547,7 +1211,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:36 GMT
+ - Tue, 21 Jun 2022 19:06:50 GMT
expires:
- '-1'
pragma:
@@ -1568,7 +1232,7 @@ interactions:
"veryFakedStorageAccountKey==", "accessMode": "ReadOnly", "shareName": "share000004"}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1583,7 +1247,7 @@ interactions:
- -g -n --storage-name --azure-file-account-name --azure-file-account-key --access-mode
--azure-file-share-name
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages/storage000003?api-version=2022-03-01
response:
@@ -1591,7 +1255,7 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages/storage000003","name":"storage000003","type":"Microsoft.App/managedenvironments/storages","properties":{"azureFile":{"accountName":"storage000003","shareName":"share000004","accessMode":"ReadOnly"}}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
@@ -1599,7 +1263,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:38 GMT
+ - Tue, 21 Jun 2022 19:06:51 GMT
expires:
- '-1'
pragma:
@@ -1635,41 +1299,57 @@ interactions:
ParameterSetName:
- -g -n --storage-name
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:38 GMT
+ - Tue, 21 Jun 2022 19:06:52 GMT
expires:
- '-1'
pragma:
@@ -1687,7 +1367,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1697,7 +1377,7 @@ interactions:
ParameterSetName:
- -g -n --storage-name
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages/storage000003?api-version=2022-03-01
response:
@@ -1705,7 +1385,7 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages/storage000003","name":"storage000003","type":"Microsoft.App/managedenvironments/storages","properties":{"azureFile":{"accountName":"storage000003","shareName":"share000004","accessMode":"ReadOnly"}}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
@@ -1713,7 +1393,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:39 GMT
+ - Tue, 21 Jun 2022 19:06:53 GMT
expires:
- '-1'
pragma:
@@ -1747,41 +1427,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:39 GMT
+ - Tue, 21 Jun 2022 19:06:54 GMT
expires:
- '-1'
pragma:
@@ -1799,7 +1495,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1809,7 +1505,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages?api-version=2022-03-01
response:
@@ -1817,7 +1513,7 @@ interactions:
string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages/storage000003","name":"storage000003","type":"Microsoft.App/managedenvironments/storages","properties":{"azureFile":{"accountName":"storage000003","shareName":"share000004","accessMode":"ReadOnly"}}}]}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
@@ -1825,7 +1521,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:39 GMT
+ - Tue, 21 Jun 2022 19:06:55 GMT
expires:
- '-1'
pragma:
@@ -1859,41 +1555,57 @@ interactions:
ParameterSetName:
- -g -n --storage-name --yes
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:40 GMT
+ - Tue, 21 Jun 2022 19:06:55 GMT
expires:
- '-1'
pragma:
@@ -1911,7 +1623,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1923,7 +1635,7 @@ interactions:
ParameterSetName:
- -g -n --storage-name --yes
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages/storage000003?api-version=2022-03-01
response:
@@ -1931,13 +1643,13 @@ interactions:
string: ''
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 12 May 2022 21:10:42 GMT
+ - Tue, 21 Jun 2022 19:06:57 GMT
expires:
- '-1'
pragma:
@@ -1955,53 +1667,6 @@ interactions:
status:
code: 200
message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env storage remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --storage-name --yes
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages/storage000003?api-version=2022-03-01
- response:
- body:
- string: '{"code":"ManagedEnvironmentStorageNotFound","message":"Storage storage000003
- not found under managed environment"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '114'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 21:10:43 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 404
- message: Not Found
- request:
body: null
headers:
@@ -2016,41 +1681,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:44 GMT
+ - Tue, 21 Jun 2022 19:06:59 GMT
expires:
- '-1'
pragma:
@@ -2068,7 +1749,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2078,7 +1759,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002/storages?api-version=2022-03-01
response:
@@ -2086,7 +1767,7 @@ interactions:
string: '{"value":[]}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
@@ -2094,7 +1775,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 21:10:45 GMT
+ - Tue, 21 Jun 2022 19:06:59 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_e2e.yaml
new file mode 100644
index 00000000000..5c5dbaf3fc5
--- /dev/null
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_e2e.yaml
@@ -0,0 +1,3089 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T18:22:02Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '311'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:22:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus2", "properties": {"sku": {"name": "PerGB2018"}, "retentionInDays":
+ 30, "workspaceCapping": {}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '116'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000005?api-version=2021-12-01-preview
+ response:
+ body:
+ string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\":
+ \"e342c76a-088e-48cd-8230-b0303b06455b\",\r\n \"provisioningState\": \"Creating\",\r\n
+ \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\":
+ \"Wed, 22 Jun 2022 18:22:10 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
+ \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n
+ \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n
+ \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\":
+ \"Thu, 23 Jun 2022 02:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
+ \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\":
+ \"Enabled\",\r\n \"createdDate\": \"Wed, 22 Jun 2022 18:22:10 GMT\",\r\n
+ \ \"modifiedDate\": \"Wed, 22 Jun 2022 18:22:10 GMT\"\r\n },\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000005\",\r\n
+ \ \"name\": \"containerapp-env000005\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n
+ \ \"location\": \"eastus2\"\r\n}"
+ headers:
+ access-control-allow-origin:
+ - '*'
+ cache-control:
+ - no-cache
+ content-length:
+ - '1079'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jun 2022 18:22:10 GMT
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000005?api-version=2021-12-01-preview
+ response:
+ body:
+ string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\":
+ \"e342c76a-088e-48cd-8230-b0303b06455b\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\":
+ \"Wed, 22 Jun 2022 18:22:10 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
+ \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n
+ \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n
+ \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\":
+ \"Thu, 23 Jun 2022 02:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
+ \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\":
+ \"Enabled\",\r\n \"createdDate\": \"Wed, 22 Jun 2022 18:22:10 GMT\",\r\n
+ \ \"modifiedDate\": \"Wed, 22 Jun 2022 18:22:13 GMT\"\r\n },\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000005\",\r\n
+ \ \"name\": \"containerapp-env000005\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n
+ \ \"location\": \"eastus2\"\r\n}"
+ headers:
+ access-control-allow-origin:
+ - '*'
+ cache-control:
+ - no-cache
+ content-length:
+ - '1080'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jun 2022 18:22:40 GMT
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace get-shared-keys
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000005/sharedKeys?api-version=2020-08-01
+ response:
+ body:
+ string: "{\r\n \"primarySharedKey\": \"RYtZVt/tb/1Pd/uxoDUi2jIe3YZRdnXYfr3sxo0XkxJ5KC+QUDSWrfVuZTjBP6uyT2hol6pgcDuprUpJdY7h4Q==\",\r\n
+ \ \"secondarySharedKey\": \"xhtBji/OFfvNZcrLBeCscCH2k6iUwJmJyufJHBbcJktQ7prANMIAahLajmOhMUOR9PGhofkyyubuKxPLZQQsAA==\"\r\n}"
+ headers:
+ access-control-allow-origin:
+ - '*'
+ cache-control:
+ - no-cache
+ cachecontrol:
+ - no-cache
+ content-length:
+ - '235'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:22:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-ams-apiversion:
+ - WebAPI1.0
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T18:22:02Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '311'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:22:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:22:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:22:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus2", "properties": {"vnetConfiguration": {"internal":
+ false}, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration":
+ {"customerId": "e342c76a-088e-48cd-8230-b0303b06455b", "sharedKey": "RYtZVt/tb/1Pd/uxoDUi2jIe3YZRdnXYfr3sxo0XkxJ5KC+QUDSWrfVuZTjBP6uyT2hol6pgcDuprUpJdY7h4Q=="}},
+ "zoneRedundant": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '353'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:22:45.6496834Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:22:45.6496834Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"whitewater-5f6e7fa2.eastus2.azurecontainerapps.io","staticIp":"20.7.175.135","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e342c76a-088e-48cd-8230-b0303b06455b"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/e20964c6-fc24-43ad-9165-344480d9560d?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '797'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:22:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/e20964c6-fc24-43ad-9165-344480d9560d?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/e20964c6-fc24-43ad-9165-344480d9560d","name":"e20964c6-fc24-43ad-9165-344480d9560d","status":"InProgress","startTime":"2022-06-22T18:22:46.5784883"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '285'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:22:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/e20964c6-fc24-43ad-9165-344480d9560d?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/e20964c6-fc24-43ad-9165-344480d9560d","name":"e20964c6-fc24-43ad-9165-344480d9560d","status":"InProgress","startTime":"2022-06-22T18:22:46.5784883"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '285'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:23:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/e20964c6-fc24-43ad-9165-344480d9560d?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/e20964c6-fc24-43ad-9165-344480d9560d","name":"e20964c6-fc24-43ad-9165-344480d9560d","status":"Succeeded","startTime":"2022-06-22T18:22:46.5784883"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:23:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:22:45.6496834","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:22:45.6496834"},"properties":{"provisioningState":"Succeeded","defaultDomain":"whitewater-5f6e7fa2.eastus2.azurecontainerapps.io","staticIp":"20.7.175.135","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e342c76a-088e-48cd-8230-b0303b06455b"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '797'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:23:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:23:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:22:45.6496834","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:22:45.6496834"},"properties":{"provisioningState":"Succeeded","defaultDomain":"whitewater-5f6e7fa2.eastus2.azurecontainerapps.io","staticIp":"20.7.175.135","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e342c76a-088e-48cd-8230-b0303b06455b"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '797'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:23:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:23:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:22:45.6496834","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:22:45.6496834"},"properties":{"provisioningState":"Succeeded","defaultDomain":"whitewater-5f6e7fa2.eastus2.azurecontainerapps.io","staticIp":"20.7.175.135","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e342c76a-088e-48cd-8230-b0303b06455b"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '797'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:23:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:23:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus2", "identity": {"type": "None"}, "properties": {"managedEnvironmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003"}]}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '402'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:23:58.3432481Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/cb07236d-196a-4351-bbe0-d7929631dc59?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1167'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:23:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ 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 --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/cb07236d-196a-4351-bbe0-d7929631dc59?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/cb07236d-196a-4351-bbe0-d7929631dc59","name":"cb07236d-196a-4351-bbe0-d7929631dc59","status":"InProgress","startTime":"2022-06-22T18:23:58.7531696"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '279'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:24:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/cb07236d-196a-4351-bbe0-d7929631dc59?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/cb07236d-196a-4351-bbe0-d7929631dc59","name":"cb07236d-196a-4351-bbe0-d7929631dc59","status":"Succeeded","startTime":"2022-06-22T18:23:58.7531696"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:24:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:23:58.3432481"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1215'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:24:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:24:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:23:58.3432481"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1215'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:24:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "East US 2", "identity": {"type": "SystemAssigned"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '534'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:38.7288046Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/252afc72-4c8c-40c1-8715-592ae32fed1e?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1330'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:24:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/252afc72-4c8c-40c1-8715-592ae32fed1e?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/252afc72-4c8c-40c1-8715-592ae32fed1e","name":"252afc72-4c8c-40c1-8715-592ae32fed1e","status":"InProgress","startTime":"2022-06-22T18:24:39.7319965"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '279'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:24:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/252afc72-4c8c-40c1-8715-592ae32fed1e?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/252afc72-4c8c-40c1-8715-592ae32fed1e","name":"252afc72-4c8c-40c1-8715-592ae32fed1e","status":"Succeeded","startTime":"2022-06-22T18:24:39.7319965"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:38.7288046"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1328'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T18:22:02Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '311'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus2"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '23'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-msi/6.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp000004?api-version=2021-09-30-preview
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp000004","name":"containerapp000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"fa6d9af7-4985-47dd-a3f5-ef4ce9b9e7ad","clientId":"2fb43826-e080-400c-aff8-76e6e0db6c04"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '455'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:19 GMT
+ expires:
+ - '-1'
+ location:
+ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp000004
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:38.7288046"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1328'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "East US 2", "identity": {"type": "SystemAssigned,UserAssigned",
+ "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp000004":
+ {}}}, "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '744'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:25:22.2656007Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp000004":{"principalId":"fa6d9af7-4985-47dd-a3f5-ef4ce9b9e7ad","clientId":"2fb43826-e080-400c-aff8-76e6e0db6c04"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/81023a6c-337a-4233-bc6c-484f5f316516?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1640'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/81023a6c-337a-4233-bc6c-484f5f316516?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/81023a6c-337a-4233-bc6c-484f5f316516","name":"81023a6c-337a-4233-bc6c-484f5f316516","status":"InProgress","startTime":"2022-06-22T18:25:23.2129354"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '279'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/81023a6c-337a-4233-bc6c-484f5f316516?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/81023a6c-337a-4233-bc6c-484f5f316516","name":"81023a6c-337a-4233-bc6c-484f5f316516","status":"Succeeded","startTime":"2022-06-22T18:25:23.2129354"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:25:22.2656007"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp000004":{"principalId":"fa6d9af7-4985-47dd-a3f5-ef4ce9b9e7ad","clientId":"2fb43826-e080-400c-aff8-76e6e0db6c04"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1638'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:25:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:25:22.2656007"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp000004":{"principalId":"fa6d9af7-4985-47dd-a3f5-ef4ce9b9e7ad","clientId":"2fb43826-e080-400c-aff8-76e6e0db6c04"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1638'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:25:22.2656007"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp000004":{"principalId":"fa6d9af7-4985-47dd-a3f5-ef4ce9b9e7ad","clientId":"2fb43826-e080-400c-aff8-76e6e0db6c04"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1638'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "East US 2", "identity": {"type": "SystemAssigned"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '534'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:26:03.3731202Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d5d4a480-33da-4ea6-8b38-7ff805a4abcb?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1330'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d5d4a480-33da-4ea6-8b38-7ff805a4abcb?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d5d4a480-33da-4ea6-8b38-7ff805a4abcb","name":"d5d4a480-33da-4ea6-8b38-7ff805a4abcb","status":"InProgress","startTime":"2022-06-22T18:26:04.2285559"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '279'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d5d4a480-33da-4ea6-8b38-7ff805a4abcb?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d5d4a480-33da-4ea6-8b38-7ff805a4abcb","name":"d5d4a480-33da-4ea6-8b38-7ff805a4abcb","status":"Succeeded","startTime":"2022-06-22T18:26:04.2285559"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:26:03.3731202"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1328'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:26:03.3731202"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1328'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:26:03.3731202"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"e46d6297-2806-455e-8e89-43a76f0cfad0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1328'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "East US 2", "identity": {"type": "None"}, "properties": {"managedEnvironmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '524'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:26:45.0672709Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/53dd87b7-d48d-4738-a026-bc2aa1df4fa5?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1217'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/53dd87b7-d48d-4738-a026-bc2aa1df4fa5?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/53dd87b7-d48d-4738-a026-bc2aa1df4fa5","name":"53dd87b7-d48d-4738-a026-bc2aa1df4fa5","status":"InProgress","startTime":"2022-06-22T18:26:46.232518"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:26:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/53dd87b7-d48d-4738-a026-bc2aa1df4fa5?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/53dd87b7-d48d-4738-a026-bc2aa1df4fa5","name":"53dd87b7-d48d-4738-a026-bc2aa1df4fa5","status":"Succeeded","startTime":"2022-06-22T18:26:46.232518"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '277'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:27:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:26:45.0672709"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1215'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:27:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:27:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:23:58.3432481","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:26:45.0672709"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.190.201.46","20.190.201.96","20.190.201.76"],"latestRevisionName":"containerapp000003--12jhgbp","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1215'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:27:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_system.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_system.yaml
index 5396fe4a9d5..72903fae1cc 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_system.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_system.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"product":"azurecli","cause":"automation","date":"2022-05-12T20:38:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T18:22:02Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:20 GMT
+ - Wed, 22 Jun 2022 18:22:05 GMT
expires:
- '-1'
pragma:
@@ -60,12 +60,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-05-12T20:38:25.2070428Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-05-12T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-05-12T20:38:25.2070428Z","modifiedDate":"2022-05-12T20:38:25.2070428Z"},"location":"canadacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"aaaa44e3-2509-4bf7-94cd-cfe4d09bfb0d","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-22T18:22:09.7734025Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-23T10:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-22T18:22:09.7734025Z","modifiedDate":"2022-06-22T18:22:09.7734025Z"},"location":"canadacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -78,7 +78,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:26 GMT
+ - Wed, 22 Jun 2022 18:22:11 GMT
expires:
- '-1'
location:
@@ -114,12 +114,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-05-12T20:38:25.2070428Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-05-12T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-05-12T20:38:25.2070428Z","modifiedDate":"2022-05-12T20:38:25.2070428Z"},"location":"canadacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"aaaa44e3-2509-4bf7-94cd-cfe4d09bfb0d","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-22T18:22:09.7734025Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-23T10:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-22T18:22:09.7734025Z","modifiedDate":"2022-06-22T18:22:09.7734025Z"},"location":"canadacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:57 GMT
+ - Wed, 22 Jun 2022 18:22:41 GMT
expires:
- '-1'
pragma:
@@ -170,12 +170,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01
response:
body:
- string: '{"primarySharedKey":"y+c9EwTK14pMoTLiMpIe8qkAXRdgLASDdt5IWyrczsK7xXuXGMvnYrDU6/4J8cLkl2m9ioABv1eF/S9xU9AIyA==","secondarySharedKey":"KgnmhYFfOOMZlxEgueT47aSkGQ30T+NS0yuwKC03adKzbXUOb5zQHb1aChcRkZbrIrhPX98cXstFrCaqD0p7tQ=="}'
+ string: '{"primarySharedKey":"pq35E+zDAvJa3LyPgs3BTTMtolRU3hKbyv6AZiFo93L7aOMsbHu37VH9K6krvdWToUr03OL0ZNNF4oG/eE/8/A==","secondarySharedKey":"ZeyRnGhqG+S+dOq0f69ct5RlCbDbnoNFtItYxzUEXUUemRhcu9TuFyOIa5dVY66KAVSOnIsMV0rj7obiLBV7eg=="}'
headers:
access-control-allow-origin:
- '*'
@@ -188,7 +188,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:57 GMT
+ - Wed, 22 Jun 2022 18:22:42 GMT
expires:
- '-1'
pragma:
@@ -226,12 +226,12 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"product":"azurecli","cause":"automation","date":"2022-05-12T20:38:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T18:22:02Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -240,7 +240,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:58 GMT
+ - Wed, 22 Jun 2022 18:22:44 GMT
expires:
- '-1'
pragma:
@@ -268,41 +268,57 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:58 GMT
+ - Wed, 22 Jun 2022 18:22:44 GMT
expires:
- '-1'
pragma:
@@ -330,41 +346,57 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:59 GMT
+ - Wed, 22 Jun 2022 18:22:44 GMT
expires:
- '-1'
pragma:
@@ -379,445 +411,45 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "canadacentral", "tags": null, "properties": {"daprAIInstrumentationKey":
- null, "vnetConfiguration": null, "internalLoadBalancerEnabled": false, "appLogsConfiguration":
- {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "be1ff293-6d08-4bd8-92f3-bcad37f3a94d", "sharedKey": "y+c9EwTK14pMoTLiMpIe8qkAXRdgLASDdt5IWyrczsK7xXuXGMvnYrDU6/4J8cLkl2m9ioABv1eF/S9xU9AIyA=="}}}}'
+ body: '{"location": "canadacentral", "properties": {"vnetConfiguration": {"internal":
+ false}, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration":
+ {"customerId": "aaaa44e3-2509-4bf7-94cd-cfe4d09bfb0d", "sharedKey": "pq35E+zDAvJa3LyPgs3BTTMtolRU3hKbyv6AZiFo93L7aOMsbHu37VH9K6krvdWToUr03OL0ZNNF4oG/eE/8/A=="}},
+ "zoneRedundant": false}}'
headers:
Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- Content-Length:
- - '406'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/managedEnvironmentOperationStatuses/c73e5170-e196-4b8c-b442-1d7e37d294fc?api-version=2022-03-01&azureAsyncOperation=true
- cache-control:
- - no-cache
- content-length:
- - '813'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:02 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-async-operation-timeout:
- - PT15M
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '99'
- x-powered-by:
- - ASP.NET
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '811'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '811'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:06 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '811'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:10 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '811'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:14 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '811'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '811'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:20 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '811'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:24 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- containerapp env create
Connection:
- keep-alive
+ Content-Length:
+ - '359'
+ Content-Type:
+ - application/json
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:22:47.9620626Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:22:47.9620626Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"lemonwater-6d20b24e.canadacentral.azurecontainerapps.io","staticIp":"20.200.92.198","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"aaaa44e3-2509-4bf7-94cd-cfe4d09bfb0d"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/managedEnvironmentOperationStatuses/70e783fb-bd2b-4de7-9aed-b0d9a47b84fa?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '811'
+ - '810'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:27 GMT
+ - Wed, 22 Jun 2022 18:22:49 GMT
expires:
- '-1'
pragma:
@@ -826,17 +458,17 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -851,23 +483,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/managedEnvironmentOperationStatuses/70e783fb-bd2b-4de7-9aed-b0d9a47b84fa?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/managedEnvironmentOperationStatuses/70e783fb-bd2b-4de7-9aed-b0d9a47b84fa","name":"70e783fb-bd2b-4de7-9aed-b0d9a47b84fa","status":"InProgress","startTime":"2022-06-22T18:22:49.2874109"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '811'
+ - '291'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:32 GMT
+ - Wed, 22 Jun 2022 18:22:54 GMT
expires:
- '-1'
pragma:
@@ -901,23 +533,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/managedEnvironmentOperationStatuses/70e783fb-bd2b-4de7-9aed-b0d9a47b84fa?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/managedEnvironmentOperationStatuses/70e783fb-bd2b-4de7-9aed-b0d9a47b84fa","name":"70e783fb-bd2b-4de7-9aed-b0d9a47b84fa","status":"InProgress","startTime":"2022-06-22T18:22:49.2874109"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '811'
+ - '291'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:35 GMT
+ - Wed, 22 Jun 2022 18:23:24 GMT
expires:
- '-1'
pragma:
@@ -951,23 +583,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/managedEnvironmentOperationStatuses/70e783fb-bd2b-4de7-9aed-b0d9a47b84fa?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/managedEnvironmentOperationStatuses/70e783fb-bd2b-4de7-9aed-b0d9a47b84fa","name":"70e783fb-bd2b-4de7-9aed-b0d9a47b84fa","status":"Succeeded","startTime":"2022-06-22T18:22:49.2874109"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '811'
+ - '290'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:38 GMT
+ - Wed, 22 Jun 2022 18:23:54 GMT
expires:
- '-1'
pragma:
@@ -1001,23 +633,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:22:47.9620626","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:22:47.9620626"},"properties":{"provisioningState":"Succeeded","defaultDomain":"lemonwater-6d20b24e.canadacentral.azurecontainerapps.io","staticIp":"20.200.92.198","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"aaaa44e3-2509-4bf7-94cd-cfe4d09bfb0d"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '813'
+ - '810'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:42 GMT
+ - Wed, 22 Jun 2022 18:23:55 GMT
expires:
- '-1'
pragma:
@@ -1051,41 +683,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:42 GMT
+ - Wed, 22 Jun 2022 18:23:56 GMT
expires:
- '-1'
pragma:
@@ -1103,7 +751,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1113,23 +761,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:22:47.9620626","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:22:47.9620626"},"properties":{"provisioningState":"Succeeded","defaultDomain":"lemonwater-6d20b24e.canadacentral.azurecontainerapps.io","staticIp":"20.200.92.198","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"aaaa44e3-2509-4bf7-94cd-cfe4d09bfb0d"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '813'
+ - '810'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:42 GMT
+ - Wed, 22 Jun 2022 18:23:57 GMT
expires:
- '-1'
pragma:
@@ -1163,41 +811,57 @@ interactions:
ParameterSetName:
- -g -n --environment --system-assigned
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:43 GMT
+ - Wed, 22 Jun 2022 18:23:58 GMT
expires:
- '-1'
pragma:
@@ -1215,7 +879,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1225,23 +889,23 @@ interactions:
ParameterSetName:
- -g -n --environment --system-assigned
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:01.8731835","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:01.8731835"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemushroom-25ba6972.canadacentral.azurecontainerapps.io","staticIp":"20.200.103.157","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"be1ff293-6d08-4bd8-92f3-bcad37f3a94d"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"canadacentral","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:22:47.9620626","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:22:47.9620626"},"properties":{"provisioningState":"Succeeded","defaultDomain":"lemonwater-6d20b24e.canadacentral.azurecontainerapps.io","staticIp":"20.200.92.198","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"aaaa44e3-2509-4bf7-94cd-cfe4d09bfb0d"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '813'
+ - '810'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:43 GMT
+ - Wed, 22 Jun 2022 18:23:59 GMT
expires:
- '-1'
pragma:
@@ -1275,41 +939,57 @@ interactions:
ParameterSetName:
- -g -n --environment --system-assigned
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:44 GMT
+ - Wed, 22 Jun 2022 18:23:59 GMT
expires:
- '-1'
pragma:
@@ -1324,16 +1004,13 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "canadacentral", "identity": {"type": "SystemAssigned", "userAssignedIdentities":
- null}, "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress":
- null, "dapr": null, "registries": null}, "template": {"revisionSuffix": null,
- "containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
- "name": "containerapp000003", "command": null, "args": null, "env": null, "resources":
- null, "volumeMounts": null}], "scale": null, "volumes": null}}, "tags": null}'
+ body: '{"location": "canadacentral", "identity": {"type": "SystemAssigned"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003"}]}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1341,32 +1018,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '704'
+ - '418'
Content-Type:
- application/json
ParameterSetName:
- -g -n --environment --system-assigned
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:47.1175905Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"68ccbb53-0041-4229-af80-32e82898329a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:03.3363991Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"f1d5f733-9f5c-4fc1-aa6b-f431270be52c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/6bb7b355-45cb-4711-8a02-3ee701c9d404?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f15d36ce-918e-4d95-9a90-41fc5bc2d75b?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1280'
+ - '1336'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:50 GMT
+ - Wed, 22 Jun 2022 18:24:07 GMT
expires:
- '-1'
pragma:
@@ -1400,75 +1077,23 @@ interactions:
ParameterSetName:
- -g -n --environment --system-assigned
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:47.1175905"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"68ccbb53-0041-4229-af80-32e82898329a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '1329'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --environment --system-assigned
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f15d36ce-918e-4d95-9a90-41fc5bc2d75b?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:47.1175905"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"68ccbb53-0041-4229-af80-32e82898329a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f15d36ce-918e-4d95-9a90-41fc5bc2d75b","name":"f15d36ce-918e-4d95-9a90-41fc5bc2d75b","status":"InProgress","startTime":"2022-06-22T18:24:05.0284838"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1329'
+ - '285'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:55 GMT
+ - Wed, 22 Jun 2022 18:24:12 GMT
expires:
- '-1'
pragma:
@@ -1502,24 +1127,23 @@ interactions:
ParameterSetName:
- -g -n --environment --system-assigned
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f15d36ce-918e-4d95-9a90-41fc5bc2d75b?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:47.1175905"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"68ccbb53-0041-4229-af80-32e82898329a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f15d36ce-918e-4d95-9a90-41fc5bc2d75b","name":"f15d36ce-918e-4d95-9a90-41fc5bc2d75b","status":"Succeeded","startTime":"2022-06-22T18:24:05.0284838"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1329'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:59 GMT
+ - Wed, 22 Jun 2022 18:24:42 GMT
expires:
- '-1'
pragma:
@@ -1553,24 +1177,24 @@ interactions:
ParameterSetName:
- -g -n --environment --system-assigned
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:47.1175905"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"68ccbb53-0041-4229-af80-32e82898329a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:03.3363991"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"f1d5f733-9f5c-4fc1-aa6b-f431270be52c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1328'
+ - '1333'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:02 GMT
+ - Wed, 22 Jun 2022 18:24:43 GMT
expires:
- '-1'
pragma:
@@ -1604,41 +1228,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:02 GMT
+ - Wed, 22 Jun 2022 18:24:44 GMT
expires:
- '-1'
pragma:
@@ -1656,7 +1296,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1666,24 +1306,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:47.1175905"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"68ccbb53-0041-4229-af80-32e82898329a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:03.3363991"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"f1d5f733-9f5c-4fc1-aa6b-f431270be52c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1328'
+ - '1333'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:04 GMT
+ - Wed, 22 Jun 2022 18:24:46 GMT
expires:
- '-1'
pragma:
@@ -1717,41 +1357,57 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:04 GMT
+ - Wed, 22 Jun 2022 18:24:47 GMT
expires:
- '-1'
pragma:
@@ -1769,7 +1425,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1779,24 +1435,24 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:47.1175905"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"68ccbb53-0041-4229-af80-32e82898329a","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:03.3363991"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"f1d5f733-9f5c-4fc1-aa6b-f431270be52c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1328'
+ - '1333'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:05 GMT
+ - Wed, 22 Jun 2022 18:24:47 GMT
expires:
- '-1'
pragma:
@@ -1817,23 +1473,15 @@ interactions:
code: 200
message: OK
- request:
- body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003",
- "name": "containerapp000003", "type": "Microsoft.App/containerApps", "location":
- "Canada Central", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType":
- "User", "createdAt": "2022-05-12T20:39:47.1175905", "lastModifiedBy": "silasstrawn@microsoft.com",
- "lastModifiedByType": "User", "lastModifiedAt": "2022-05-12T20:39:47.1175905"},
- "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "outboundIpAddresses": ["20.116.82.15", "20.116.84.46", "20.116.84.47"], "latestRevisionName":
- "containerapp000003--nx8nz31", "latestRevisionFqdn": "", "customDomainVerificationId":
- "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7", "configuration":
- {"activeRevisionsMode": "Single", "secrets": []}, "template": {"containers":
- [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", "name":
- "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}], "scale":
- {"maxReplicas": 10}}}, "identity": {"type": "None", "principalId": "68ccbb53-0041-4229-af80-32e82898329a",
- "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ body: '{"location": "Canada Central", "identity": {"type": "None"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1841,32 +1489,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1392'
+ - '529'
Content-Type:
- application/json
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:07.4554069Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:49.7546632Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/b741969b-b1d2-49fe-8860-eb8b3add05c1?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f75f216e-ae4b-4ad4-a171-fc1ecc2df0de?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1217'
+ - '1222'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:10 GMT
+ - Wed, 22 Jun 2022 18:24:51 GMT
expires:
- '-1'
pragma:
@@ -1900,24 +1548,73 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f75f216e-ae4b-4ad4-a171-fc1ecc2df0de?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:07.4554069"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f75f216e-ae4b-4ad4-a171-fc1ecc2df0de","name":"f75f216e-ae4b-4ad4-a171-fc1ecc2df0de","status":"InProgress","startTime":"2022-06-22T18:24:50.9040073"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '285'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 18:24:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f75f216e-ae4b-4ad4-a171-fc1ecc2df0de?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/f75f216e-ae4b-4ad4-a171-fc1ecc2df0de","name":"f75f216e-ae4b-4ad4-a171-fc1ecc2df0de","status":"Succeeded","startTime":"2022-06-22T18:24:50.9040073"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1216'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:11 GMT
+ - Wed, 22 Jun 2022 18:25:27 GMT
expires:
- '-1'
pragma:
@@ -1951,24 +1648,24 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:07.4554069"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:49.7546632"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1215'
+ - '1220'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:14 GMT
+ - Wed, 22 Jun 2022 18:25:27 GMT
expires:
- '-1'
pragma:
@@ -2002,41 +1699,57 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:15 GMT
+ - Wed, 22 Jun 2022 18:25:28 GMT
expires:
- '-1'
pragma:
@@ -2054,7 +1767,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2064,24 +1777,24 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:07.4554069"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:24:49.7546632"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1215'
+ - '1220'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:16 GMT
+ - Wed, 22 Jun 2022 18:25:29 GMT
expires:
- '-1'
pragma:
@@ -2102,22 +1815,15 @@ interactions:
code: 200
message: OK
- request:
- body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003",
- "name": "containerapp000003", "type": "Microsoft.App/containerApps", "location":
- "Canada Central", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType":
- "User", "createdAt": "2022-05-12T20:39:47.1175905", "lastModifiedBy": "silasstrawn@microsoft.com",
- "lastModifiedByType": "User", "lastModifiedAt": "2022-05-12T20:40:07.4554069"},
- "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "outboundIpAddresses": ["20.116.82.15", "20.116.84.46", "20.116.84.47"], "latestRevisionName":
- "containerapp000003--nx8nz31", "latestRevisionFqdn": "", "customDomainVerificationId":
- "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7", "configuration":
- {"activeRevisionsMode": "Single", "secrets": []}, "template": {"containers":
- [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", "name":
- "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}], "scale":
- {"maxReplicas": 10}}}, "identity": {"type": "SystemAssigned"}}'
+ body: '{"location": "Canada Central", "identity": {"type": "SystemAssigned"},
+ "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2125,32 +1831,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1295'
+ - '539'
Content-Type:
- application/json
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:17.7190469Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2decc7b8-a722-4eb5-80cf-bd2156a49c38","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:25:31.0242199Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"6a3b1a8d-4c86-4442-bccf-897e1756d56c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/45fdd8a9-fb2b-4817-86a3-7fa15a0d853b?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/0a74f85b-e835-4ad8-b551-7a70e5218c68?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1330'
+ - '1335'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:20 GMT
+ - Wed, 22 Jun 2022 18:25:32 GMT
expires:
- '-1'
pragma:
@@ -2184,75 +1890,23 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:17.7190469"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2decc7b8-a722-4eb5-80cf-bd2156a49c38","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '1329'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:40:21 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp identity assign
- Connection:
- - keep-alive
- ParameterSetName:
- - --system-assigned -g -n
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/0a74f85b-e835-4ad8-b551-7a70e5218c68?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:17.7190469"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2decc7b8-a722-4eb5-80cf-bd2156a49c38","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/0a74f85b-e835-4ad8-b551-7a70e5218c68","name":"0a74f85b-e835-4ad8-b551-7a70e5218c68","status":"InProgress","startTime":"2022-06-22T18:25:32.0932278"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1329'
+ - '285'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:24 GMT
+ - Wed, 22 Jun 2022 18:25:37 GMT
expires:
- '-1'
pragma:
@@ -2286,24 +1940,23 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/0a74f85b-e835-4ad8-b551-7a70e5218c68?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:17.7190469"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2decc7b8-a722-4eb5-80cf-bd2156a49c38","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/0a74f85b-e835-4ad8-b551-7a70e5218c68","name":"0a74f85b-e835-4ad8-b551-7a70e5218c68","status":"Succeeded","startTime":"2022-06-22T18:25:32.0932278"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1329'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:27 GMT
+ - Wed, 22 Jun 2022 18:26:07 GMT
expires:
- '-1'
pragma:
@@ -2337,24 +1990,24 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:17.7190469"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2decc7b8-a722-4eb5-80cf-bd2156a49c38","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:25:31.0242199"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"6a3b1a8d-4c86-4442-bccf-897e1756d56c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1328'
+ - '1333'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:31 GMT
+ - Wed, 22 Jun 2022 18:26:08 GMT
expires:
- '-1'
pragma:
@@ -2388,41 +2041,57 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:31 GMT
+ - Wed, 22 Jun 2022 18:26:09 GMT
expires:
- '-1'
pragma:
@@ -2440,7 +2109,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2450,24 +2119,24 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:17.7190469"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2decc7b8-a722-4eb5-80cf-bd2156a49c38","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:25:31.0242199"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"6a3b1a8d-4c86-4442-bccf-897e1756d56c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1328'
+ - '1333'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:33 GMT
+ - Wed, 22 Jun 2022 18:26:10 GMT
expires:
- '-1'
pragma:
@@ -2488,23 +2157,15 @@ interactions:
code: 200
message: OK
- request:
- body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003",
- "name": "containerapp000003", "type": "Microsoft.App/containerApps", "location":
- "Canada Central", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType":
- "User", "createdAt": "2022-05-12T20:39:47.1175905", "lastModifiedBy": "silasstrawn@microsoft.com",
- "lastModifiedByType": "User", "lastModifiedAt": "2022-05-12T20:40:17.7190469"},
- "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "outboundIpAddresses": ["20.116.82.15", "20.116.84.46", "20.116.84.47"], "latestRevisionName":
- "containerapp000003--nx8nz31", "latestRevisionFqdn": "", "customDomainVerificationId":
- "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7", "configuration":
- {"activeRevisionsMode": "Single", "secrets": []}, "template": {"containers":
- [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", "name":
- "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}], "scale":
- {"maxReplicas": 10}}}, "identity": {"type": "None", "principalId": "2decc7b8-a722-4eb5-80cf-bd2156a49c38",
- "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ body: '{"location": "Canada Central", "identity": {"type": "None"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2512,32 +2173,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1392'
+ - '529'
Content-Type:
- application/json
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:34.2895113Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:26:12.5439156Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/9dd7dc0c-a672-45af-8afd-3091d8298bbd?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/e10d3399-1143-44e0-b5a3-77106cd671af?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1217'
+ - '1222'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:37 GMT
+ - Wed, 22 Jun 2022 18:26:14 GMT
expires:
- '-1'
pragma:
@@ -2571,24 +2232,23 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/e10d3399-1143-44e0-b5a3-77106cd671af?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:34.2895113"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/e10d3399-1143-44e0-b5a3-77106cd671af","name":"e10d3399-1143-44e0-b5a3-77106cd671af","status":"InProgress","startTime":"2022-06-22T18:26:13.7873756"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1216'
+ - '285'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:38 GMT
+ - Wed, 22 Jun 2022 18:26:19 GMT
expires:
- '-1'
pragma:
@@ -2622,24 +2282,23 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/e10d3399-1143-44e0-b5a3-77106cd671af?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:34.2895113"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/canadacentral/containerappOperationStatuses/e10d3399-1143-44e0-b5a3-77106cd671af","name":"e10d3399-1143-44e0-b5a3-77106cd671af","status":"Succeeded","startTime":"2022-06-22T18:26:13.7873756"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1216'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:41 GMT
+ - Wed, 22 Jun 2022 18:26:50 GMT
expires:
- '-1'
pragma:
@@ -2673,24 +2332,24 @@ interactions:
ParameterSetName:
- --system-assigned -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"Canada
- Central","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:47.1175905","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:34.2895113"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.82.15","20.116.84.46","20.116.84.47"],"latestRevisionName":"containerapp000003--nx8nz31","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Central","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T18:24:03.3363991","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T18:26:12.5439156"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.116.224.50","20.116.224.51","20.116.143.76"],"latestRevisionName":"containerapp000003--gi79my6","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1215'
+ - '1220'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:44 GMT
+ - Wed, 22 Jun 2022 18:26:50 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_user.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_user.yaml
new file mode 100644
index 00000000000..36a0b998596
--- /dev/null
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_identity_user.yaml
@@ -0,0 +1,3304 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T19:28:48Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '314'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:28:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westeurope", "properties": {"sku": {"name": "PerGB2018"},
+ "retentionInDays": 30, "workspaceCapping": {}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '119'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000006?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"f1835227-2a87-4509-aef4-b3852c48b5d3","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-22T19:28:57.1106373Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-23T03:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-22T19:28:57.1106373Z","modifiedDate":"2022-06-22T19:28:57.1106373Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000006","name":"containerapp-env000006","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '855'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:29:00 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000006?api-version=2021-12-01-preview
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000006?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"f1835227-2a87-4509-aef4-b3852c48b5d3","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-22T19:28:57.1106373Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-23T03:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-22T19:28:57.1106373Z","modifiedDate":"2022-06-22T19:28:57.1106373Z"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000006","name":"containerapp-env000006","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '855'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:29:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace get-shared-keys
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000006/sharedKeys?api-version=2020-08-01
+ response:
+ body:
+ string: '{"primarySharedKey":"+723iE/ygAvR5deKk0VjF8sqgkrVcE+EDeeUj8mnclC9TOMZYQQO5zMyiQGcN8MK+ybOXXgAV26HA8Wj0r1bJA==","secondarySharedKey":"eEGt9korleuPKQth/fa07Iwl27cIA3TqrA/bTPo9MPl2Q8MWqcxP7RUVqerGzD9nN58XvxoslBZxQosEvCUXvA=="}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:29:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:c7ec48f5-2684-46e8-accb-45e7dbec242b
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T19:28:48Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '314'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:29:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:29:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:29:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westeurope", "properties": {"vnetConfiguration": {"internal":
+ false}, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration":
+ {"customerId": "f1835227-2a87-4509-aef4-b3852c48b5d3", "sharedKey": "+723iE/ygAvR5deKk0VjF8sqgkrVcE+EDeeUj8mnclC9TOMZYQQO5zMyiQGcN8MK+ybOXXgAV26HA8Wj0r1bJA=="}},
+ "zoneRedundant": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '356'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"westeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:29:40.7911228Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:29:40.7911228Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashysea-08192b07.westeurope.azurecontainerapps.io","staticIp":"20.93.203.186","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f1835227-2a87-4509-aef4-b3852c48b5d3"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/babba06b-7596-4ce2-aa25-334f3ba7c39a?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '801'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:29:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/babba06b-7596-4ce2-aa25-334f3ba7c39a?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/babba06b-7596-4ce2-aa25-334f3ba7c39a","name":"babba06b-7596-4ce2-aa25-334f3ba7c39a","status":"InProgress","startTime":"2022-06-22T19:29:42.422992"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '287'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:29:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/babba06b-7596-4ce2-aa25-334f3ba7c39a?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/babba06b-7596-4ce2-aa25-334f3ba7c39a","name":"babba06b-7596-4ce2-aa25-334f3ba7c39a","status":"InProgress","startTime":"2022-06-22T19:29:42.422992"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '287'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:30:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/babba06b-7596-4ce2-aa25-334f3ba7c39a?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/managedEnvironmentOperationStatuses/babba06b-7596-4ce2-aa25-334f3ba7c39a","name":"babba06b-7596-4ce2-aa25-334f3ba7c39a","status":"Succeeded","startTime":"2022-06-22T19:29:42.422992"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '286'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:30:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"westeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:29:40.7911228","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:29:40.7911228"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashysea-08192b07.westeurope.azurecontainerapps.io","staticIp":"20.93.203.186","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f1835227-2a87-4509-aef4-b3852c48b5d3"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '801'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:30:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:30:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"westeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:29:40.7911228","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:29:40.7911228"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashysea-08192b07.westeurope.azurecontainerapps.io","staticIp":"20.93.203.186","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f1835227-2a87-4509-aef4-b3852c48b5d3"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '801'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:30:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:30:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"westeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:29:40.7911228","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:29:40.7911228"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashysea-08192b07.westeurope.azurecontainerapps.io","staticIp":"20.93.203.186","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"f1835227-2a87-4509-aef4-b3852c48b5d3"}},"zoneRedundant":false}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '801'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:30:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:30:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westeurope", "identity": {"type": "None"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003"}]}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '405'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:30:59.5912193Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/35d3abef-aefd-4f65-8f5d-95db5eff8310?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1172'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ 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 --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/35d3abef-aefd-4f65-8f5d-95db5eff8310?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/35d3abef-aefd-4f65-8f5d-95db5eff8310","name":"35d3abef-aefd-4f65-8f5d-95db5eff8310","status":"InProgress","startTime":"2022-06-22T19:31:00.4734287"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/35d3abef-aefd-4f65-8f5d-95db5eff8310?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/35d3abef-aefd-4f65-8f5d-95db5eff8310","name":"35d3abef-aefd-4f65-8f5d-95db5eff8310","status":"Succeeded","startTime":"2022-06-22T19:31:00.4734287"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --environment
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:30:59.5912193"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1220'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T19:28:48Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '314'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westeurope"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '26'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-msi/6.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user1000004?api-version=2021-09-30-preview
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user1000004","name":"containerapp-user1000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westeurope","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"94c75ace-0e6b-4154-a801-815932930182","clientId":"9a7ed6e4-4746-461c-8795-943bf56000ab"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '470'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:46 GMT
+ expires:
+ - '-1'
+ location:
+ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user1000004
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T19:28:48Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '314'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westeurope"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '26'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-msi/6.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005?api-version=2021-09-30-preview
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005","name":"containerapp-user2000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westeurope","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"1dbb9a71-6a38-45c6-a3ab-ed5215848227","clientId":"f3907aa7-18f4-4c88-9443-faed5fcc3e4c"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '470'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:53 GMT
+ expires:
+ - '-1'
+ location:
+ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:30:59.5912193"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1220'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:31:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "West Europe", "identity": {"type": "SystemAssigned"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '536'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:31:59.9909856Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/24c702e1-a0e7-430c-bcc3-b18f2a330893?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1335'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/24c702e1-a0e7-430c-bcc3-b18f2a330893?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/24c702e1-a0e7-430c-bcc3-b18f2a330893","name":"24c702e1-a0e7-430c-bcc3-b18f2a330893","status":"InProgress","startTime":"2022-06-22T19:32:01.9426373"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/24c702e1-a0e7-430c-bcc3-b18f2a330893?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/24c702e1-a0e7-430c-bcc3-b18f2a330893","name":"24c702e1-a0e7-430c-bcc3-b18f2a330893","status":"Succeeded","startTime":"2022-06-22T19:32:01.9426373"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:31:59.9909856"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1333'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:31:59.9909856"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1333'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "West Europe", "identity": {"type": "SystemAssigned,UserAssigned",
+ "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user1000004":
+ {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005":
+ {}}}, "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '927'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:32:44.9974746Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user1000004":{"principalId":"94c75ace-0e6b-4154-a801-815932930182","clientId":"9a7ed6e4-4746-461c-8795-943bf56000ab"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005":{"principalId":"1dbb9a71-6a38-45c6-a3ab-ed5215848227","clientId":"f3907aa7-18f4-4c88-9443-faed5fcc3e4c"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/eff87490-bc97-43a0-bb83-d2400fdb9b63?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1926'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/eff87490-bc97-43a0-bb83-d2400fdb9b63?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/eff87490-bc97-43a0-bb83-d2400fdb9b63","name":"eff87490-bc97-43a0-bb83-d2400fdb9b63","status":"Succeeded","startTime":"2022-06-22T19:32:46.5298028"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity assign
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:32:44.9974746"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user1000004":{"principalId":"94c75ace-0e6b-4154-a801-815932930182","clientId":"9a7ed6e4-4746-461c-8795-943bf56000ab"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005":{"principalId":"1dbb9a71-6a38-45c6-a3ab-ed5215848227","clientId":"f3907aa7-18f4-4c88-9443-faed5fcc3e4c"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1924'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:32:44.9974746"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user1000004":{"principalId":"94c75ace-0e6b-4154-a801-815932930182","clientId":"9a7ed6e4-4746-461c-8795-943bf56000ab"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005":{"principalId":"1dbb9a71-6a38-45c6-a3ab-ed5215848227","clientId":"f3907aa7-18f4-4c88-9443-faed5fcc3e4c"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1924'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:32:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:32:44.9974746"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user1000004":{"principalId":"94c75ace-0e6b-4154-a801-815932930182","clientId":"9a7ed6e4-4746-461c-8795-943bf56000ab"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005":{"principalId":"1dbb9a71-6a38-45c6-a3ab-ed5215848227","clientId":"f3907aa7-18f4-4c88-9443-faed5fcc3e4c"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1924'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "West Europe", "identity": {"type": "SystemAssigned, UserAssigned",
+ "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005":
+ {}}}, "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '753'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:02.549806Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005":{"principalId":"1dbb9a71-6a38-45c6-a3ab-ed5215848227","clientId":"f3907aa7-18f4-4c88-9443-faed5fcc3e4c"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9365f124-8999-45cd-9aff-7afd36597ff5?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1650'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9365f124-8999-45cd-9aff-7afd36597ff5?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/9365f124-8999-45cd-9aff-7afd36597ff5","name":"9365f124-8999-45cd-9aff-7afd36597ff5","status":"Succeeded","startTime":"2022-06-22T19:33:03.9519179"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:02.549806"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005":{"principalId":"1dbb9a71-6a38-45c6-a3ab-ed5215848227","clientId":"f3907aa7-18f4-4c88-9443-faed5fcc3e4c"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1648'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:02.549806"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned,
+ UserAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user2000005":{"principalId":"1dbb9a71-6a38-45c6-a3ab-ed5215848227","clientId":"f3907aa7-18f4-4c88-9443-faed5fcc3e4c"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1648'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "West Europe", "identity": {"type": "SystemAssigned"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '536'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:15.1694925Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/4cc93a01-a2da-4aa4-a2da-11eafcf7d701?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1335'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/4cc93a01-a2da-4aa4-a2da-11eafcf7d701?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/4cc93a01-a2da-4aa4-a2da-11eafcf7d701","name":"4cc93a01-a2da-4aa4-a2da-11eafcf7d701","status":"Succeeded","startTime":"2022-06-22T19:33:16.5640761"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --user-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:15.1694925"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1333'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:15.1694925"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1333'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:15.1694925"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"13359d44-f4cc-4f05-bdd7-57f7b54ea0b3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1333'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "West Europe", "identity": {"type": "None"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '526'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:30.7039828Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/953b579b-231a-469f-9e56-c098b069fa18?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1222'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/953b579b-231a-469f-9e56-c098b069fa18?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/westeurope/containerappOperationStatuses/953b579b-231a-469f-9e56-c098b069fa18","name":"953b579b-231a-469f-9e56-c098b069fa18","status":"Succeeded","startTime":"2022-06-22T19:33:32.2525717"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --system-assigned -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:30.7039828"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1220'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp identity show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"West
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T19:30:59.5912193","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T19:33:30.7039828"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.238.241.201","20.238.241.212","20.238.241.214"],"latestRevisionName":"containerapp000003--3549xwx","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1220'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 19:33:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_ingress_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_ingress_e2e.yaml
index 7aa8405cf07..2f84927fdda 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_ingress_e2e.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_ingress_e2e.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-12T20:38:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T20:43:09Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:21 GMT
+ - Wed, 22 Jun 2022 20:43:11 GMT
expires:
- '-1'
pragma:
@@ -60,22 +60,22 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\":
- \"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff\",\r\n \"provisioningState\": \"Creating\",\r\n
+ \"a95e472f-3c0e-4044-877d-efa047a4147e\",\r\n \"provisioningState\": \"Creating\",\r\n
\ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\":
- \"Thu, 12 May 2022 20:38:24 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
+ \"Wed, 22 Jun 2022 20:43:15 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
\ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n
\ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n
\ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\":
- \"Fri, 13 May 2022 07:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
+ \"Thu, 23 Jun 2022 14:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
\ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\":
- \"Enabled\",\r\n \"createdDate\": \"Thu, 12 May 2022 20:38:24 GMT\",\r\n
- \ \"modifiedDate\": \"Thu, 12 May 2022 20:38:24 GMT\"\r\n },\r\n \"id\":
+ \"Enabled\",\r\n \"createdDate\": \"Wed, 22 Jun 2022 20:43:15 GMT\",\r\n
+ \ \"modifiedDate\": \"Wed, 22 Jun 2022 20:43:15 GMT\"\r\n },\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000004\",\r\n
\ \"name\": \"containerapp-env000004\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n
\ \"location\": \"eastus2\"\r\n}"
@@ -89,7 +89,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 May 2022 20:38:24 GMT
+ - Wed, 22 Jun 2022 20:43:15 GMT
pragma:
- no-cache
request-context:
@@ -122,22 +122,22 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\":
- \"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"a95e472f-3c0e-4044-877d-efa047a4147e\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\":
- \"Thu, 12 May 2022 20:38:24 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
+ \"Wed, 22 Jun 2022 20:43:15 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
\ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n
\ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n
\ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\":
- \"Fri, 13 May 2022 07:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
+ \"Thu, 23 Jun 2022 14:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
\ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\":
- \"Enabled\",\r\n \"createdDate\": \"Thu, 12 May 2022 20:38:24 GMT\",\r\n
- \ \"modifiedDate\": \"Thu, 12 May 2022 20:38:25 GMT\"\r\n },\r\n \"id\":
+ \"Enabled\",\r\n \"createdDate\": \"Wed, 22 Jun 2022 20:43:15 GMT\",\r\n
+ \ \"modifiedDate\": \"Wed, 22 Jun 2022 20:43:16 GMT\"\r\n },\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000004\",\r\n
\ \"name\": \"containerapp-env000004\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n
\ \"location\": \"eastus2\"\r\n}"
@@ -151,7 +151,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 May 2022 20:38:55 GMT
+ - Wed, 22 Jun 2022 20:43:46 GMT
pragma:
- no-cache
request-context:
@@ -188,13 +188,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01
response:
body:
- string: "{\r\n \"primarySharedKey\": \"R7CJ7s2dzowGLGUn33OrAz6gVkIjzhoTOCsq2N67QlkrbzmTjf2SSCLcKmI0jk1+78FJt8BTGAGkk36ygr/a3w==\",\r\n
- \ \"secondarySharedKey\": \"jDUHnUiIIpvk0FITfC1ZCeYWYcPYv9XcG4kyNs5zc5xl/5+/sO4lcaM/kYeVPCD+mta3aAejnD7RZvTVmY/3dg==\"\r\n}"
+ string: "{\r\n \"primarySharedKey\": \"G9Imrv5DTbjnDgqaXJksmapIlb4XwGI8qmQI+JjLW4y+pizPGz8SK9xaIO0a+2PeMwhhJJkkjeucEKPiUqmMKg==\",\r\n
+ \ \"secondarySharedKey\": \"nCeS9QPcxW7cmfRO3ZWW3Z0Gtl4zwPAac6kNuWcao5zMk0yeEadSF9vGkimneZg+7diqye5KoYf0dskPikNfpA==\"\r\n}"
headers:
access-control-allow-origin:
- '*'
@@ -207,7 +207,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:56 GMT
+ - Wed, 22 Jun 2022 20:43:47 GMT
expires:
- '-1'
pragma:
@@ -248,12 +248,12 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-05-12T20:38:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T20:43:09Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -262,7 +262,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:56 GMT
+ - Wed, 22 Jun 2022 20:43:48 GMT
expires:
- '-1'
pragma:
@@ -290,41 +290,57 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:57 GMT
+ - Wed, 22 Jun 2022 20:43:49 GMT
expires:
- '-1'
pragma:
@@ -352,41 +368,57 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:38:57 GMT
+ - Wed, 22 Jun 2022 20:43:49 GMT
expires:
- '-1'
pragma:
@@ -401,495 +433,45 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2", "tags": null, "properties": {"daprAIInstrumentationKey":
- null, "vnetConfiguration": null, "internalLoadBalancerEnabled": false, "appLogsConfiguration":
- {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "6c4f0c20-b33c-4a28-b28d-9bb8d9234eff", "sharedKey": "R7CJ7s2dzowGLGUn33OrAz6gVkIjzhoTOCsq2N67QlkrbzmTjf2SSCLcKmI0jk1+78FJt8BTGAGkk36ygr/a3w=="}}}}'
+ body: '{"location": "eastus2", "properties": {"vnetConfiguration": {"internal":
+ false}, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration":
+ {"customerId": "a95e472f-3c0e-4044-877d-efa047a4147e", "sharedKey": "G9Imrv5DTbjnDgqaXJksmapIlb4XwGI8qmQI+JjLW4y+pizPGz8SK9xaIO0a+2PeMwhhJJkkjeucEKPiUqmMKg=="}},
+ "zoneRedundant": false}}'
headers:
Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- Content-Length:
- - '400'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/968e5a70-0157-42d7-a9cd-f905ed13ffbb?api-version=2022-03-01&azureAsyncOperation=true
- cache-control:
- - no-cache
- content-length:
- - '797'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-async-operation-timeout:
- - PT15M
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '99'
- x-powered-by:
- - ASP.NET
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '795'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '795'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '795'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '795'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:11 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '795'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:14 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '795'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:18 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '795'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:21 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '795'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:39:23 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- containerapp env create
Connection:
- keep-alive
+ Content-Length:
+ - '353'
+ Content-Type:
+ - application/json
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:43:51.6099386Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:43:51.6099386Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"braverock-f438e34b.eastus2.azurecontainerapps.io","staticIp":"20.119.239.0","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"a95e472f-3c0e-4044-877d-efa047a4147e"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/15779a0b-b6bf-4789-89b2-8e868bb19bf5?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '795'
+ - '796'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:27 GMT
+ - Wed, 22 Jun 2022 20:43:52 GMT
expires:
- '-1'
pragma:
@@ -898,17 +480,17 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -923,23 +505,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/15779a0b-b6bf-4789-89b2-8e868bb19bf5?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/15779a0b-b6bf-4789-89b2-8e868bb19bf5","name":"15779a0b-b6bf-4789-89b2-8e868bb19bf5","status":"InProgress","startTime":"2022-06-22T20:43:52.4873453"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '795'
+ - '285'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:30 GMT
+ - Wed, 22 Jun 2022 20:43:57 GMT
expires:
- '-1'
pragma:
@@ -973,23 +555,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/15779a0b-b6bf-4789-89b2-8e868bb19bf5?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/15779a0b-b6bf-4789-89b2-8e868bb19bf5","name":"15779a0b-b6bf-4789-89b2-8e868bb19bf5","status":"InProgress","startTime":"2022-06-22T20:43:52.4873453"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '795'
+ - '285'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:32 GMT
+ - Wed, 22 Jun 2022 20:44:27 GMT
expires:
- '-1'
pragma:
@@ -1023,23 +605,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/15779a0b-b6bf-4789-89b2-8e868bb19bf5?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/15779a0b-b6bf-4789-89b2-8e868bb19bf5","name":"15779a0b-b6bf-4789-89b2-8e868bb19bf5","status":"Succeeded","startTime":"2022-06-22T20:43:52.4873453"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '795'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:36 GMT
+ - Wed, 22 Jun 2022 20:44:58 GMT
expires:
- '-1'
pragma:
@@ -1073,23 +655,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:43:51.6099386","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:43:51.6099386"},"properties":{"provisioningState":"Succeeded","defaultDomain":"braverock-f438e34b.eastus2.azurecontainerapps.io","staticIp":"20.119.239.0","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"a95e472f-3c0e-4044-877d-efa047a4147e"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '797'
+ - '796'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:40 GMT
+ - Wed, 22 Jun 2022 20:44:58 GMT
expires:
- '-1'
pragma:
@@ -1123,41 +705,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:40 GMT
+ - Wed, 22 Jun 2022 20:44:59 GMT
expires:
- '-1'
pragma:
@@ -1175,7 +773,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1185,23 +783,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:43:51.6099386","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:43:51.6099386"},"properties":{"provisioningState":"Succeeded","defaultDomain":"braverock-f438e34b.eastus2.azurecontainerapps.io","staticIp":"20.119.239.0","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"a95e472f-3c0e-4044-877d-efa047a4147e"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '797'
+ - '796'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:40 GMT
+ - Wed, 22 Jun 2022 20:45:00 GMT
expires:
- '-1'
pragma:
@@ -1235,41 +833,57 @@ interactions:
ParameterSetName:
- -g -n --environment --ingress --target-port
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:41 GMT
+ - Wed, 22 Jun 2022 20:45:01 GMT
expires:
- '-1'
pragma:
@@ -1287,7 +901,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1297,23 +911,23 @@ interactions:
ParameterSetName:
- -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:00.4137196","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:00.4137196"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowplant-c91e90f9.eastus2.azurecontainerapps.io","staticIp":"52.177.242.39","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6c4f0c20-b33c-4a28-b28d-9bb8d9234eff"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:43:51.6099386","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:43:51.6099386"},"properties":{"provisioningState":"Succeeded","defaultDomain":"braverock-f438e34b.eastus2.azurecontainerapps.io","staticIp":"20.119.239.0","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"a95e472f-3c0e-4044-877d-efa047a4147e"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '797'
+ - '796'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:41 GMT
+ - Wed, 22 Jun 2022 20:45:02 GMT
expires:
- '-1'
pragma:
@@ -1347,41 +961,57 @@ interactions:
ParameterSetName:
- -g -n --environment --ingress --target-port
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:41 GMT
+ - Wed, 22 Jun 2022 20:45:02 GMT
expires:
- '-1'
pragma:
@@ -1396,17 +1026,14 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2", "identity": {"type": "None", "userAssignedIdentities":
- null}, "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress":
- {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "traffic":
- null, "customDomains": null}, "dapr": null, "registries": null}, "template":
- {"revisionSuffix": null, "containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
- "name": "containerapp000003", "command": null, "args": null, "env": null, "resources":
- null, "volumeMounts": null}], "scale": null, "volumes": null}}, "tags": null}'
+ body: '{"location": "eastus2", "identity": {"type": "None"}, "properties": {"managedEnvironmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"ingress": {"external": true, "targetPort": 80, "transport":
+ "auto"}}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003"}]}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1414,32 +1041,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '795'
+ - '470'
Content-Type:
- application/json
ParameterSetName:
- -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:45.147378Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:05.849954Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.braverock-f438e34b.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/8da53d29-930f-462c-8d19-993bc1d12dc0?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/f0171ee7-0863-4508-bb03-d4934e387de7?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1402'
+ - '1397'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:47 GMT
+ - Wed, 22 Jun 2022 20:45:08 GMT
expires:
- '-1'
pragma:
@@ -1473,24 +1100,23 @@ interactions:
ParameterSetName:
- -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/f0171ee7-0863-4508-bb03-d4934e387de7?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:45.147378"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/f0171ee7-0863-4508-bb03-d4934e387de7","name":"f0171ee7-0863-4508-bb03-d4934e387de7","status":"InProgress","startTime":"2022-06-22T20:45:06.2158906"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1505'
+ - '279'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:49 GMT
+ - Wed, 22 Jun 2022 20:45:13 GMT
expires:
- '-1'
pragma:
@@ -1524,24 +1150,23 @@ interactions:
ParameterSetName:
- -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/f0171ee7-0863-4508-bb03-d4934e387de7?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:45.147378"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/f0171ee7-0863-4508-bb03-d4934e387de7","name":"f0171ee7-0863-4508-bb03-d4934e387de7","status":"Succeeded","startTime":"2022-06-22T20:45:06.2158906"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1505'
+ - '278'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:52 GMT
+ - Wed, 22 Jun 2022 20:45:43 GMT
expires:
- '-1'
pragma:
@@ -1575,24 +1200,24 @@ interactions:
ParameterSetName:
- -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:45.147378"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:05.849954"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"containerapp000003--sjv8wzd.braverock-f438e34b.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.braverock-f438e34b.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1504'
+ - '1497'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:55 GMT
+ - Wed, 22 Jun 2022 20:45:43 GMT
expires:
- '-1'
pragma:
@@ -1626,41 +1251,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:55 GMT
+ - Wed, 22 Jun 2022 20:45:44 GMT
expires:
- '-1'
pragma:
@@ -1678,7 +1319,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1688,24 +1329,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:45.147378"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:05.849954"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"containerapp000003--sjv8wzd.braverock-f438e34b.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.braverock-f438e34b.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1504'
+ - '1497'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:56 GMT
+ - Wed, 22 Jun 2022 20:45:45 GMT
expires:
- '-1'
pragma:
@@ -1739,41 +1380,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:56 GMT
+ - Wed, 22 Jun 2022 20:45:46 GMT
expires:
- '-1'
pragma:
@@ -1791,7 +1448,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1801,24 +1458,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:45.147378"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:05.849954"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"containerapp000003--sjv8wzd.braverock-f438e34b.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.braverock-f438e34b.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1504'
+ - '1497'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:57 GMT
+ - Wed, 22 Jun 2022 20:45:47 GMT
expires:
- '-1'
pragma:
@@ -1839,22 +1496,15 @@ interactions:
code: 200
message: OK
- request:
- body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003",
- "name": "containerapp000003", "type": "Microsoft.App/containerApps", "location":
- "East US 2", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType":
- "User", "createdAt": "2022-05-12T20:39:45.147378", "lastModifiedBy": "silasstrawn@microsoft.com",
- "lastModifiedByType": "User", "lastModifiedAt": "2022-05-12T20:39:45.147378"},
- "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "outboundIpAddresses": ["52.177.242.63", "52.177.246.151", "52.177.246.109"],
- "latestRevisionName": "containerapp000003--udllurt", "latestRevisionFqdn": "containerapp000003--udllurt.yellowplant-c91e90f9.eastus2.azurecontainerapps.io",
- "customDomainVerificationId": "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7",
- "configuration": {"activeRevisionsMode": "Single", "ingress": null, "secrets":
- []}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ body: '{"location": "East US 2", "identity": {"type": "None"}, "properties": {"managedEnvironmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single"}, "template":
+ {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
"name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
- "scale": {"maxReplicas": 10}}}, "identity": {"type": "None"}}'
+ "scale": {"maxReplicas": 10}}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1862,32 +1512,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1378'
+ - '524'
Content-Type:
- application/json
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:58.953879Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:48.0313056Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4f90e954-9029-4e34-a4fa-d5178dd1c4c3?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/ff6114d9-c52c-4f1d-b720-c414c867f005?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1215'
+ - '1213'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:39:59 GMT
+ - Wed, 22 Jun 2022 20:45:49 GMT
expires:
- '-1'
pragma:
@@ -1921,75 +1571,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:58.953879"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
- cache-control:
- - no-cache
- content-length:
- - '1214'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 May 2022 20:40:01 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress disable
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/ff6114d9-c52c-4f1d-b720-c414c867f005?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:58.953879"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/ff6114d9-c52c-4f1d-b720-c414c867f005","name":"ff6114d9-c52c-4f1d-b720-c414c867f005","status":"InProgress","startTime":"2022-06-22T20:45:48.2014439"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1214'
+ - '279'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:04 GMT
+ - Wed, 22 Jun 2022 20:45:54 GMT
expires:
- '-1'
pragma:
@@ -2023,24 +1621,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/ff6114d9-c52c-4f1d-b720-c414c867f005?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:58.953879"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/ff6114d9-c52c-4f1d-b720-c414c867f005","name":"ff6114d9-c52c-4f1d-b720-c414c867f005","status":"Succeeded","startTime":"2022-06-22T20:45:48.2014439"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1214'
+ - '278'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:07 GMT
+ - Wed, 22 Jun 2022 20:46:24 GMT
expires:
- '-1'
pragma:
@@ -2074,24 +1671,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:58.953879"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:48.0313056"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1213'
+ - '1211'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:10 GMT
+ - Wed, 22 Jun 2022 20:46:24 GMT
expires:
- '-1'
pragma:
@@ -2125,41 +1722,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:10 GMT
+ - Wed, 22 Jun 2022 20:46:25 GMT
expires:
- '-1'
pragma:
@@ -2177,7 +1790,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2187,24 +1800,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:58.953879"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:48.0313056"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1213'
+ - '1211'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:11 GMT
+ - Wed, 22 Jun 2022 20:46:26 GMT
expires:
- '-1'
pragma:
@@ -2238,41 +1851,57 @@ interactions:
ParameterSetName:
- -g -n --type --target-port --allow-insecure --transport
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:12 GMT
+ - Wed, 22 Jun 2022 20:46:27 GMT
expires:
- '-1'
pragma:
@@ -2290,7 +1919,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2300,24 +1929,24 @@ interactions:
ParameterSetName:
- -g -n --type --target-port --allow-insecure --transport
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:39:58.953879"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:45:48.0313056"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single"},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1213'
+ - '1211'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:13 GMT
+ - Wed, 22 Jun 2022 20:46:27 GMT
expires:
- '-1'
pragma:
@@ -2338,24 +1967,16 @@ interactions:
code: 200
message: OK
- request:
- body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003",
- "name": "containerapp000003", "type": "Microsoft.App/containerApps", "location":
- "East US 2", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType":
- "User", "createdAt": "2022-05-12T20:39:45.147378", "lastModifiedBy": "silasstrawn@microsoft.com",
- "lastModifiedByType": "User", "lastModifiedAt": "2022-05-12T20:39:58.953879"},
- "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "outboundIpAddresses": ["52.177.242.63", "52.177.246.151", "52.177.246.109"],
- "latestRevisionName": "containerapp000003--udllurt", "latestRevisionFqdn": "",
- "customDomainVerificationId": "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7",
- "configuration": {"activeRevisionsMode": "Single", "ingress": {"fqdn": null,
- "external": false, "targetPort": 81, "transport": "http2", "traffic": null,
- "customDomains": null, "allowInsecure": true}, "secrets": []}, "template": {"containers":
- [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", "name":
- "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}], "scale":
- {"maxReplicas": 10}}}, "identity": {"type": "None"}}'
+ body: '{"location": "East US 2", "identity": {"type": "None"}, "properties": {"managedEnvironmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "Single", "ingress":
+ {"external": false, "targetPort": 81, "transport": "http2", "allowInsecure":
+ true}}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}],
+ "scale": {"maxReplicas": 10}}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2363,32 +1984,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1432'
+ - '619'
Content-Type:
- application/json
ParameterSetName:
- -g -n --type --target-port --allow-insecure --transport
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:15.2626217Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":false,"targetPort":81,"transport":"Http2","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":true}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:46:28.5130751Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"containerapp000003--sjv8wzd.internal.braverock-f438e34b.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.internal.braverock-f438e34b.eastus2.azurecontainerapps.io","external":false,"targetPort":81,"transport":"Http2","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":true}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/76d95d57-ee9d-407d-9488-3b863da5ba52?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/090c061a-0f90-4df7-8fb5-3c1333d432bd?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1526'
+ - '1519'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:16 GMT
+ - Wed, 22 Jun 2022 20:46:29 GMT
expires:
- '-1'
pragma:
@@ -2422,24 +2043,73 @@ interactions:
ParameterSetName:
- -g -n --type --target-port --allow-insecure --transport
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/090c061a-0f90-4df7-8fb5-3c1333d432bd?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:15.2626217"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":false,"targetPort":81,"transport":"Http2","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":true}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/090c061a-0f90-4df7-8fb5-3c1333d432bd","name":"090c061a-0f90-4df7-8fb5-3c1333d432bd","status":"InProgress","startTime":"2022-06-22T20:46:28.6715734"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '279'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jun 2022 20:46:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp ingress enable
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --type --target-port --allow-insecure --transport
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/090c061a-0f90-4df7-8fb5-3c1333d432bd?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/090c061a-0f90-4df7-8fb5-3c1333d432bd","name":"090c061a-0f90-4df7-8fb5-3c1333d432bd","status":"Succeeded","startTime":"2022-06-22T20:46:28.6715734"}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1525'
+ - '278'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:18 GMT
+ - Wed, 22 Jun 2022 20:47:05 GMT
expires:
- '-1'
pragma:
@@ -2473,24 +2143,24 @@ interactions:
ParameterSetName:
- -g -n --type --target-port --allow-insecure --transport
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:15.2626217"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":false,"targetPort":81,"transport":"Http2","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":true}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:46:28.5130751"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"containerapp000003--sjv8wzd.internal.braverock-f438e34b.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.internal.braverock-f438e34b.eastus2.azurecontainerapps.io","external":false,"targetPort":81,"transport":"Http2","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":true}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1524'
+ - '1517'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:20 GMT
+ - Wed, 22 Jun 2022 20:47:05 GMT
expires:
- '-1'
pragma:
@@ -2524,41 +2194,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:20 GMT
+ - Wed, 22 Jun 2022 20:47:07 GMT
expires:
- '-1'
pragma:
@@ -2576,7 +2262,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2586,24 +2272,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:15.2626217"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":false,"targetPort":81,"transport":"Http2","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":true}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:46:28.5130751"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"containerapp000003--sjv8wzd.internal.braverock-f438e34b.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.internal.braverock-f438e34b.eastus2.azurecontainerapps.io","external":false,"targetPort":81,"transport":"Http2","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":true}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1524'
+ - '1517'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:22 GMT
+ - Wed, 22 Jun 2022 20:47:08 GMT
expires:
- '-1'
pragma:
@@ -2637,41 +2323,57 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '2863'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:22 GMT
+ - Wed, 22 Jun 2022 20:47:08 GMT
expires:
- '-1'
pragma:
@@ -2689,7 +2391,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2699,24 +2401,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.36.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T20:39:45.147378","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T20:40:15.2626217"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.242.63","52.177.246.151","52.177.246.109"],"latestRevisionName":"containerapp000003--udllurt","latestRevisionFqdn":"containerapp000003--udllurt.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.internal.yellowplant-c91e90f9.eastus2.azurecontainerapps.io","external":false,"targetPort":81,"transport":"Http2","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":true}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T20:45:05.849954","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T20:46:28.5130751"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.96.83.152","20.96.83.161","20.96.83.181"],"latestRevisionName":"containerapp000003--sjv8wzd","latestRevisionFqdn":"containerapp000003--sjv8wzd.internal.braverock-f438e34b.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.internal.braverock-f438e34b.eastus2.azurecontainerapps.io","external":false,"targetPort":81,"transport":"Http2","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":true}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- - 2022-01-01-preview, 2022-03-01
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1524'
+ - '1517'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 May 2022 20:40:23 GMT
+ - Wed, 22 Jun 2022 20:47:10 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_ingress_traffic_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_ingress_traffic_e2e.yaml
index 8452a887bdf..76737c508c8 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_ingress_traffic_e2e.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_ingress_traffic_e2e.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-06-06T16:35:29Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T22:10:26Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:35:30 GMT
+ - Wed, 22 Jun 2022 22:10:28 GMT
expires:
- '-1'
pragma:
@@ -60,22 +60,22 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\":
- \"68beba8c-b911-4f9c-a964-769fb3966fad\",\r\n \"provisioningState\": \"Creating\",\r\n
+ \"29f1bb01-278d-4981-aa96-66951a7b01fb\",\r\n \"provisioningState\": \"Creating\",\r\n
\ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\":
- \"Mon, 06 Jun 2022 16:35:34 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
+ \"Wed, 22 Jun 2022 22:10:32 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
\ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n
\ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n
\ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\":
- \"Tue, 07 Jun 2022 06:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
+ \"Thu, 23 Jun 2022 09:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
\ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\":
- \"Enabled\",\r\n \"createdDate\": \"Mon, 06 Jun 2022 16:35:34 GMT\",\r\n
- \ \"modifiedDate\": \"Mon, 06 Jun 2022 16:35:34 GMT\"\r\n },\r\n \"id\":
+ \"Enabled\",\r\n \"createdDate\": \"Wed, 22 Jun 2022 22:10:32 GMT\",\r\n
+ \ \"modifiedDate\": \"Wed, 22 Jun 2022 22:10:32 GMT\"\r\n },\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000004\",\r\n
\ \"name\": \"containerapp-env000004\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n
\ \"location\": \"eastus2\"\r\n}"
@@ -89,7 +89,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 06 Jun 2022 16:35:35 GMT
+ - Wed, 22 Jun 2022 22:10:32 GMT
pragma:
- no-cache
request-context:
@@ -122,22 +122,22 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\":
- \"68beba8c-b911-4f9c-a964-769fb3966fad\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"29f1bb01-278d-4981-aa96-66951a7b01fb\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\":
- \"Mon, 06 Jun 2022 16:35:34 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
+ \"Wed, 22 Jun 2022 22:10:32 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n
\ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n
\ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n
\ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\":
- \"Tue, 07 Jun 2022 06:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
+ \"Thu, 23 Jun 2022 09:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n
\ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\":
- \"Enabled\",\r\n \"createdDate\": \"Mon, 06 Jun 2022 16:35:34 GMT\",\r\n
- \ \"modifiedDate\": \"Mon, 06 Jun 2022 16:35:35 GMT\"\r\n },\r\n \"id\":
+ \"Enabled\",\r\n \"createdDate\": \"Wed, 22 Jun 2022 22:10:32 GMT\",\r\n
+ \ \"modifiedDate\": \"Wed, 22 Jun 2022 22:10:33 GMT\"\r\n },\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000004\",\r\n
\ \"name\": \"containerapp-env000004\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n
\ \"location\": \"eastus2\"\r\n}"
@@ -151,7 +151,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 06 Jun 2022 16:36:05 GMT
+ - Wed, 22 Jun 2022 22:11:03 GMT
pragma:
- no-cache
request-context:
@@ -188,13 +188,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01
response:
body:
- string: "{\r\n \"primarySharedKey\": \"nAvC6eD35sVmVPCa2hdVxToZJEfrosQac9gLHizXu1bNCoVYi9vCuGKjy/AJlR8awYQTbNNPaQcHsMsJUBwEWQ==\",\r\n
- \ \"secondarySharedKey\": \"ihrxc/DYz6cPvPU3E9Yh6JEecbo0JLGjnIEgi7EYaSnAtthwKTM/AS5lfuBKIU1NevzjzOS0kXe4WDZqWCTyJA==\"\r\n}"
+ string: "{\r\n \"primarySharedKey\": \"hd7wM187saiT+OBEoAR+31OaBCZC9BfjNwh1oCZJE2kg/gIc04t+2/Vq+8jtk9+T5Fjc/TvGqxsyM+nD6J+w2w==\",\r\n
+ \ \"secondarySharedKey\": \"rENM7WXt099O6jfp04rLSxxfOJtVdgVuvNS100fTvFAFpvOEt6TCq7PHszTg2IvMOEK1G3Pxc8UepnwYiFrX7g==\"\r\n}"
headers:
access-control-allow-origin:
- '*'
@@ -207,7 +207,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:07 GMT
+ - Wed, 22 Jun 2022 22:11:05 GMT
expires:
- '-1'
pragma:
@@ -248,12 +248,12 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-06-06T16:35:29Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2022-06-22T22:10:26Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -262,7 +262,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:09 GMT
+ - Wed, 22 Jun 2022 22:11:08 GMT
expires:
- '-1'
pragma:
@@ -290,49 +290,57 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:09 GMT
+ - Wed, 22 Jun 2022 22:11:09 GMT
expires:
- '-1'
pragma:
@@ -360,49 +368,57 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:10 GMT
+ - Wed, 22 Jun 2022 22:11:09 GMT
expires:
- '-1'
pragma:
@@ -417,14 +433,13 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2", "tags": null, "properties": {"daprAIInstrumentationKey":
- null, "vnetConfiguration": null, "internalLoadBalancerEnabled": false, "appLogsConfiguration":
- {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "68beba8c-b911-4f9c-a964-769fb3966fad", "sharedKey": "nAvC6eD35sVmVPCa2hdVxToZJEfrosQac9gLHizXu1bNCoVYi9vCuGKjy/AJlR8awYQTbNNPaQcHsMsJUBwEWQ=="}},
+ body: '{"location": "eastus2", "properties": {"vnetConfiguration": {"internal":
+ false}, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration":
+ {"customerId": "29f1bb01-278d-4981-aa96-66951a7b01fb", "sharedKey": "hd7wM187saiT+OBEoAR+31OaBCZC9BfjNwh1oCZJE2kg/gIc04t+2/Vq+8jtk9+T5Fjc/TvGqxsyM+nD6J+w2w=="}},
"zoneRedundant": false}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -432,31 +447,31 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '424'
+ - '353'
Content-Type:
- application/json
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:11:11.970756Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:11:11.970756Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"nicesky-842c81f6.eastus2.azurecontainerapps.io","staticIp":"20.230.99.31","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29f1bb01-278d-4981-aa96-66951a7b01fb"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/78f28acf-cb38-4a6c-b101-c6d304532261?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/85bc5a69-ec79-4b6f-a933-50f33f47f69f?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '795'
+ - '792'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:14 GMT
+ - Wed, 22 Jun 2022 22:11:13 GMT
expires:
- '-1'
pragma:
@@ -490,23 +505,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/85bc5a69-ec79-4b6f-a933-50f33f47f69f?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/85bc5a69-ec79-4b6f-a933-50f33f47f69f","name":"85bc5a69-ec79-4b6f-a933-50f33f47f69f","status":"InProgress","startTime":"2022-06-22T22:11:13.1678106"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '285'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:15 GMT
+ - Wed, 22 Jun 2022 22:11:18 GMT
expires:
- '-1'
pragma:
@@ -540,23 +555,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/85bc5a69-ec79-4b6f-a933-50f33f47f69f?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/85bc5a69-ec79-4b6f-a933-50f33f47f69f","name":"85bc5a69-ec79-4b6f-a933-50f33f47f69f","status":"InProgress","startTime":"2022-06-22T22:11:13.1678106"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '285'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:19 GMT
+ - Wed, 22 Jun 2022 22:11:48 GMT
expires:
- '-1'
pragma:
@@ -590,23 +605,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/85bc5a69-ec79-4b6f-a933-50f33f47f69f?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/85bc5a69-ec79-4b6f-a933-50f33f47f69f","name":"85bc5a69-ec79-4b6f-a933-50f33f47f69f","status":"Succeeded","startTime":"2022-06-22T22:11:13.1678106"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:21 GMT
+ - Wed, 22 Jun 2022 22:12:18 GMT
expires:
- '-1'
pragma:
@@ -640,23 +655,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:11:11.970756","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:11:11.970756"},"properties":{"provisioningState":"Succeeded","defaultDomain":"nicesky-842c81f6.eastus2.azurecontainerapps.io","staticIp":"20.230.99.31","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29f1bb01-278d-4981-aa96-66951a7b01fb"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '792'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:25 GMT
+ - Wed, 22 Jun 2022 22:12:19 GMT
expires:
- '-1'
pragma:
@@ -680,149 +695,77 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '793'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 06 Jun 2022 16:36:28 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '793'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 06 Jun 2022 16:36:31 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp env show
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:34 GMT
+ - Wed, 22 Jun 2022 22:12:21 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -830,33 +773,33 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp env show
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:11:11.970756","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:11:11.970756"},"properties":{"provisioningState":"Succeeded","defaultDomain":"nicesky-842c81f6.eastus2.azurecontainerapps.io","staticIp":"20.230.99.31","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29f1bb01-278d-4981-aa96-66951a7b01fb"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '792'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:38 GMT
+ - Wed, 22 Jun 2022 22:12:21 GMT
expires:
- '-1'
pragma:
@@ -880,49 +823,77 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port --revisions-mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:41 GMT
+ - Wed, 22 Jun 2022 22:12:23 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -930,33 +901,33 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port --revisions-mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:11:11.970756","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:11:11.970756"},"properties":{"provisioningState":"Succeeded","defaultDomain":"nicesky-842c81f6.eastus2.azurecontainerapps.io","staticIp":"20.230.99.31","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29f1bb01-278d-4981-aa96-66951a7b01fb"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '792'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:45 GMT
+ - Wed, 22 Jun 2022 22:12:24 GMT
expires:
- '-1'
pragma:
@@ -980,83 +951,122 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port --revisions-mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:48 GMT
+ - Wed, 22 Jun 2022 22:12:24 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"location": "eastus2", "identity": {"type": "None"}, "properties": {"managedEnvironmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"ingress": {"external": true, "targetPort": 80, "transport":
+ "auto"}}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003"}]}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
+ Content-Length:
+ - '470'
+ Content-Type:
+ - application/json
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port --revisions-mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:12:27.5136487Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d3b9fc59-1bae-4444-99ae-6ed1dc54485d?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '793'
+ - '1397'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:51 GMT
+ - Wed, 22 Jun 2022 22:12:28 GMT
expires:
- '-1'
pragma:
@@ -1065,17 +1075,17 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -1084,29 +1094,29 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port --revisions-mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d3b9fc59-1bae-4444-99ae-6ed1dc54485d?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d3b9fc59-1bae-4444-99ae-6ed1dc54485d","name":"d3b9fc59-1bae-4444-99ae-6ed1dc54485d","status":"InProgress","startTime":"2022-06-22T22:12:27.9283707"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '279'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:53 GMT
+ - Wed, 22 Jun 2022 22:12:35 GMT
expires:
- '-1'
pragma:
@@ -1134,29 +1144,29 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port --revisions-mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d3b9fc59-1bae-4444-99ae-6ed1dc54485d?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d3b9fc59-1bae-4444-99ae-6ed1dc54485d","name":"d3b9fc59-1bae-4444-99ae-6ed1dc54485d","status":"Succeeded","startTime":"2022-06-22T22:12:27.9283707"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '793'
+ - '278'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:36:56 GMT
+ - Wed, 22 Jun 2022 22:13:04 GMT
expires:
- '-1'
pragma:
@@ -1184,29 +1194,30 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port --revisions-mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:12:27.5136487"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--wf7t4ds","latestRevisionFqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '795'
+ - '1495'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:00 GMT
+ - Wed, 22 Jun 2022 22:13:05 GMT
expires:
- '-1'
pragma:
@@ -1234,55 +1245,63 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env show
+ - containerapp ingress show
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:00 GMT
+ - Wed, 22 Jun 2022 22:13:06 GMT
expires:
- '-1'
pragma:
@@ -1300,33 +1319,34 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env show
+ - containerapp ingress show
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:12:27.5136487"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--wf7t4ds","latestRevisionFqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '795'
+ - '1495'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:01 GMT
+ - Wed, 22 Jun 2022 22:13:08 GMT
expires:
- '-1'
pragma:
@@ -1354,55 +1374,63 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision set-mode
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --revisions-mode
+ - -g -n --mode
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:02 GMT
+ - Wed, 22 Jun 2022 22:13:10 GMT
expires:
- '-1'
pragma:
@@ -1420,33 +1448,34 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision set-mode
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --revisions-mode
+ - -g -n --mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:36:13.2620676","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:36:13.2620676"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashyocean-a385731e.eastus2.azurecontainerapps.io","staticIp":"20.97.221.223","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"68beba8c-b911-4f9c-a964-769fb3966fad"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:12:27.5136487"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--wf7t4ds","latestRevisionFqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '795'
+ - '1495'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:03 GMT
+ - Wed, 22 Jun 2022 22:13:10 GMT
expires:
- '-1'
pragma:
@@ -1467,120 +1496,50 @@ interactions:
code: 200
message: OK
- request:
- body: null
+ body: '{"location": "East US 2", "identity": {"type": "None"}, "properties": {"managedEnvironmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "multiple", "ingress":
+ {"external": true, "targetPort": 80, "transport": "Auto", "traffic": [{"weight":
+ 100, "latestRevision": true}], "allowInsecure": false}}, "template": {"containers":
+ [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", "name":
+ "containerapp000003", "resources": {"cpu": 0.5, "memory": "1Gi"}}], "scale":
+ {"maxReplicas": 10}}}}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --environment --ingress --target-port --revisions-mode
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 06 Jun 2022 16:37:04 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: '{"location": "eastus2", "identity": {"type": "None", "userAssignedIdentities":
- null}, "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "configuration": {"secrets": null, "activeRevisionsMode": "multiple", "ingress":
- {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "traffic":
- null, "customDomains": null}, "dapr": null, "registries": null}, "template":
- {"revisionSuffix": null, "containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
- "name": "containerapp000003", "command": null, "args": null, "env": null, "resources":
- null, "volumeMounts": null}], "scale": null, "volumes": null}}, "tags": null}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp create
+ - containerapp revision set-mode
Connection:
- keep-alive
Content-Length:
- - '797'
+ - '674'
Content-Type:
- application/json
ParameterSetName:
- - -g -n --environment --ingress --target-port --revisions-mode
+ - -g -n --mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:07.2526715Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:13:12.3290013Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--wf7t4ds","latestRevisionFqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2322728b-2b7b-42d2-a74a-4f1dbaa6be18?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/6decd9a8-bb2b-4037-99ee-060ff97ff01f?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1401'
+ - '1499'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:10 GMT
+ - Wed, 22 Jun 2022 22:13:12 GMT
expires:
- '-1'
pragma:
@@ -1608,81 +1567,29 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --environment --ingress --target-port --revisions-mode
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:07.2526715"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1502'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 06 Jun 2022 16:37:12 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp create
+ - containerapp revision set-mode
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --revisions-mode
+ - -g -n --mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/6decd9a8-bb2b-4037-99ee-060ff97ff01f?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:07.2526715"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/6decd9a8-bb2b-4037-99ee-060ff97ff01f","name":"6decd9a8-bb2b-4037-99ee-060ff97ff01f","status":"InProgress","startTime":"2022-06-22T22:13:12.5568878"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1502'
+ - '279'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:16 GMT
+ - Wed, 22 Jun 2022 22:13:18 GMT
expires:
- '-1'
pragma:
@@ -1710,30 +1617,29 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision set-mode
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --revisions-mode
+ - -g -n --mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/6decd9a8-bb2b-4037-99ee-060ff97ff01f?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:07.2526715"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/6decd9a8-bb2b-4037-99ee-060ff97ff01f","name":"6decd9a8-bb2b-4037-99ee-060ff97ff01f","status":"Succeeded","startTime":"2022-06-22T22:13:12.5568878"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1501'
+ - '278'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:19 GMT
+ - Wed, 22 Jun 2022 22:13:47 GMT
expires:
- '-1'
pragma:
@@ -1749,77 +1655,7 @@ interactions:
x-content-type-options:
- nosniff
x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 06 Jun 2022 16:37:20 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
+ - ASP.NET
status:
code: 200
message: OK
@@ -1831,30 +1667,30 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp ingress show
+ - containerapp revision set-mode
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -n --mode
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:07.2526715"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:13:12.3290013"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--wf7t4ds","latestRevisionFqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1501'
+ - '1497'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:20 GMT
+ - Wed, 22 Jun 2022 22:13:48 GMT
expires:
- '-1'
pragma:
@@ -1888,49 +1724,57 @@ interactions:
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:21 GMT
+ - Wed, 22 Jun 2022 22:13:51 GMT
expires:
- '-1'
pragma:
@@ -1948,7 +1792,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1958,24 +1802,24 @@ interactions:
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:07.2526715"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:13:12.3290013"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--wf7t4ds","latestRevisionFqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1501'
+ - '1497'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:22 GMT
+ - Wed, 22 Jun 2022 22:13:52 GMT
expires:
- '-1'
pragma:
@@ -1996,11 +1840,11 @@ interactions:
code: 200
message: OK
- request:
- body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": "100",
+ body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 100,
"latestRevision": true}]}}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2008,13 +1852,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '104'
+ - '102'
Content-Type:
- application/json
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
@@ -2028,11 +1872,11 @@ interactions:
content-length:
- '0'
date:
- - Mon, 06 Jun 2022 16:37:23 GMT
+ - Wed, 22 Jun 2022 22:13:53 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4122c42f-91cf-4a09-a17a-dc6372bbb1e6?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/5b55af06-fe0b-4fab-9e74-2161db2ada90?api-version=2022-03-01
pragma:
- no-cache
server:
@@ -2062,75 +1906,23 @@ interactions:
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:23.2331875"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1502'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 06 Jun 2022 16:37:25 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic set
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision-weight
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/5b55af06-fe0b-4fab-9e74-2161db2ada90?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:23.2331875"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/5b55af06-fe0b-4fab-9e74-2161db2ada90","name":"5b55af06-fe0b-4fab-9e74-2161db2ada90","status":"InProgress","startTime":"2022-06-22T22:13:53.4927078"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1502'
+ - '279'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:27 GMT
+ - Wed, 22 Jun 2022 22:13:58 GMT
expires:
- '-1'
pragma:
@@ -2154,7 +1946,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2164,24 +1956,24 @@ interactions:
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:23.2331875"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:13:53.2284009"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--wf7t4ds","latestRevisionFqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1501'
+ - '1497'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:30 GMT
+ - Wed, 22 Jun 2022 22:13:59 GMT
expires:
- '-1'
pragma:
@@ -2215,49 +2007,57 @@ interactions:
ParameterSetName:
- -g -n --cpu --memory
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:31 GMT
+ - Wed, 22 Jun 2022 22:14:00 GMT
expires:
- '-1'
pragma:
@@ -2285,49 +2085,57 @@ interactions:
ParameterSetName:
- -g -n --cpu --memory
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:31 GMT
+ - Wed, 22 Jun 2022 22:14:01 GMT
expires:
- '-1'
pragma:
@@ -2345,7 +2153,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2355,24 +2163,24 @@ interactions:
ParameterSetName:
- -g -n --cpu --memory
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:23.2331875"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:13:53.2284009"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--wf7t4ds","latestRevisionFqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1501'
+ - '1497'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:31 GMT
+ - Wed, 22 Jun 2022 22:14:02 GMT
expires:
- '-1'
pragma:
@@ -2393,24 +2201,11 @@ interactions:
code: 200
message: OK
- request:
- body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003",
- "name": "containerapp000003", "type": "Microsoft.App/containerApps", "location":
- "East US 2", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType":
- "User", "createdAt": "2022-06-06T16:37:07.2526715", "lastModifiedBy": "silasstrawn@microsoft.com",
- "lastModifiedByType": "User", "lastModifiedAt": "2022-06-06T16:37:23.2331875"},
- "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "outboundIpAddresses": ["52.177.145.132", "52.247.83.237", "52.247.84.7"], "latestRevisionName":
- "containerapp000003--j941xgh", "latestRevisionFqdn": "containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io",
- "customDomainVerificationId": "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7",
- "configuration": {"activeRevisionsMode": "Multiple", "ingress": {"fqdn": "containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io",
- "external": true, "targetPort": 80, "transport": "Auto", "traffic": [{"weight":
- 100, "latestRevision": true}], "allowInsecure": false}, "secrets": []}, "template":
- {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
- "name": "containerapp000003", "resources": {"cpu": 1.0, "memory": "2Gi"}}],
- "scale": {"maxReplicas": 10}}}, "identity": {"type": "None"}}'
+ body: '{"properties": {"template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003", "resources": {"cpu": 1.0, "memory": "2Gi"}}]}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2418,34 +2213,31 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1587'
+ - '194'
Content-Type:
- application/json
ParameterSetName:
- -g -n --cpu --memory
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
- method: PUT
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:33.2884749Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--j941xgh","latestRevisionFqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: ''
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/00a93fb0-0ce0-4f67-a77f-0e645205699a?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1503'
- content-type:
- - application/json; charset=utf-8
+ - '0'
date:
- - Mon, 06 Jun 2022 16:37:34 GMT
+ - Wed, 22 Jun 2022 22:14:02 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/05ee5f9f-1974-4c04-905b-d7d799c72df6?api-version=2022-03-01
pragma:
- no-cache
server:
@@ -2454,66 +2246,13 @@ interactions:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
- x-ms-async-operation-timeout:
- - PT15M
x-ms-ratelimit-remaining-subscription-resource-requests:
- '499'
x-powered-by:
- ASP.NET
status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --cpu --memory
- User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:33.2884749"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--teqbk0k","latestRevisionFqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1502'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 06 Jun 2022 16:37:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
body: null
headers:
@@ -2528,24 +2267,23 @@ interactions:
ParameterSetName:
- -g -n --cpu --memory
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/05ee5f9f-1974-4c04-905b-d7d799c72df6?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:33.2884749"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--teqbk0k","latestRevisionFqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/05ee5f9f-1974-4c04-905b-d7d799c72df6","name":"05ee5f9f-1974-4c04-905b-d7d799c72df6","status":"InProgress","startTime":"2022-06-22T22:14:03.0703963"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1502'
+ - '279'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:39 GMT
+ - Wed, 22 Jun 2022 22:14:07 GMT
expires:
- '-1'
pragma:
@@ -2569,7 +2307,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2579,24 +2317,24 @@ interactions:
ParameterSetName:
- -g -n --cpu --memory
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:33.2884749"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--teqbk0k","latestRevisionFqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:14:02.8955037"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--50l8jde","latestRevisionFqdn":"containerapp000003--50l8jde.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1502'
+ - '1498'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:42 GMT
+ - Wed, 22 Jun 2022 22:14:08 GMT
expires:
- '-1'
pragma:
@@ -2620,50 +2358,77 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp update
+ - containerapp revision list
Connection:
- keep-alive
ParameterSetName:
- - -g -n --cpu --memory
+ - -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:33.2884749"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--teqbk0k","latestRevisionFqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1501'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:45 GMT
+ - Wed, 22 Jun 2022 22:14:10 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -2671,7 +2436,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2681,23 +2446,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions?api-version=2022-03-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--j941xgh","name":"containerapp000003--j941xgh","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-06T16:37:09+00:00","fqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--teqbk0k","name":"containerapp000003--teqbk0k","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-06T16:37:33+00:00","fqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.00,"memory":"2Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned"}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--wf7t4ds","name":"containerapp000003--wf7t4ds","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-22T22:12:29+00:00","fqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--50l8jde","name":"containerapp000003--50l8jde","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-22T22:14:03+00:00","fqdn":"containerapp000003--50l8jde.nicesky-842c81f6.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.00,"memory":"2Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned"}}]}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1463'
+ - '1459'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:47 GMT
+ - Wed, 22 Jun 2022 22:14:12 GMT
expires:
- '-1'
pragma:
@@ -2731,49 +2496,57 @@ interactions:
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:47 GMT
+ - Wed, 22 Jun 2022 22:14:13 GMT
expires:
- '-1'
pragma:
@@ -2791,7 +2564,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2801,24 +2574,24 @@ interactions:
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:33.2884749"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--teqbk0k","latestRevisionFqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:14:02.8955037"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--50l8jde","latestRevisionFqdn":"containerapp000003--50l8jde.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1501'
+ - '1497'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:49 GMT
+ - Wed, 22 Jun 2022 22:14:14 GMT
expires:
- '-1'
pragma:
@@ -2852,23 +2625,23 @@ interactions:
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--j941xgh?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--wf7t4ds?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--j941xgh","name":"containerapp000003--j941xgh","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-06T16:37:09+00:00","fqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--wf7t4ds","name":"containerapp000003--wf7t4ds","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-22T22:12:29+00:00","fqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '724'
+ - '722'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:51 GMT
+ - Wed, 22 Jun 2022 22:14:16 GMT
expires:
- '-1'
pragma:
@@ -2889,12 +2662,12 @@ interactions:
code: 200
message: OK
- request:
- body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": "50",
- "latestRevision": true}, {"revisionName": "containerapp000003--j941xgh", "weight":
+ body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 50,
+ "latestRevision": true}, {"revisionName": "containerapp000003--wf7t4ds", "weight":
50, "latestRevision": false}]}}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -2902,13 +2675,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '191'
+ - '189'
Content-Type:
- application/json
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
@@ -2922,11 +2695,11 @@ interactions:
content-length:
- '0'
date:
- - Mon, 06 Jun 2022 16:37:52 GMT
+ - Wed, 22 Jun 2022 22:14:17 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d8e0c653-00e7-4fb2-9c3a-599eca4a6e6a?api-version=2022-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/7c3f0af8-fc44-4481-8729-d1481abbacd8?api-version=2022-03-01
pragma:
- no-cache
server:
@@ -2956,24 +2729,23 @@ interactions:
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/7c3f0af8-fc44-4481-8729-d1481abbacd8?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:52.1475449"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--teqbk0k","latestRevisionFqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--j941xgh","weight":50}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/7c3f0af8-fc44-4481-8729-d1481abbacd8","name":"7c3f0af8-fc44-4481-8729-d1481abbacd8","status":"InProgress","startTime":"2022-06-22T22:14:17.2091365"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1560'
+ - '279'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:53 GMT
+ - Wed, 22 Jun 2022 22:14:22 GMT
expires:
- '-1'
pragma:
@@ -2997,7 +2769,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -3007,24 +2779,24 @@ interactions:
ParameterSetName:
- -g -n --revision-weight
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:52.1475449"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--teqbk0k","latestRevisionFqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--j941xgh","weight":50}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:14:17.0355664"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--50l8jde","latestRevisionFqdn":"containerapp000003--50l8jde.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--wf7t4ds","weight":50}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1560'
+ - '1556'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:56 GMT
+ - Wed, 22 Jun 2022 22:14:23 GMT
expires:
- '-1'
pragma:
@@ -3048,50 +2820,77 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp ingress traffic set
+ - containerapp ingress traffic show
Connection:
- keep-alive
ParameterSetName:
- - -g -n --revision-weight
+ - -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:52.1475449"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--teqbk0k","latestRevisionFqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--j941xgh","weight":50}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1559'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:37:59 GMT
+ - Wed, 22 Jun 2022 22:14:24 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -3109,59 +2908,40 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.6 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
+ US 2","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-22T22:12:27.5136487","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-22T22:14:17.0355664"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.85.86.122","20.22.120.82","20.22.120.97"],"latestRevisionName":"containerapp000003--50l8jde","latestRevisionFqdn":"containerapp000003--50l8jde.nicesky-842c81f6.eastus2.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.nicesky-842c81f6.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--wf7t4ds","weight":50}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '3551'
+ - '1555'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:38:00 GMT
+ - Wed, 22 Jun 2022 22:14:25 GMT
expires:
- '-1'
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
vary:
- - Accept-Encoding
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-powered-by:
+ - ASP.NET
status:
code: 200
message: OK
@@ -3169,50 +2949,77 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp ingress traffic show
+ - containerapp revision list
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"East
- US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-06T16:37:07.2526715","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-06T16:37:52.1475449"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["52.177.145.132","52.247.83.237","52.247.84.7"],"latestRevisionName":"containerapp000003--teqbk0k","latestRevisionFqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.ashyocean-a385731e.eastus2.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--j941xgh","weight":50}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.0,"memory":"2Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1559'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:38:01 GMT
+ - Wed, 22 Jun 2022 22:14:26 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -3220,7 +3027,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -3230,23 +3037,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions?api-version=2022-03-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--j941xgh","name":"containerapp000003--j941xgh","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-06T16:37:09+00:00","fqdn":"containerapp000003--j941xgh.ashyocean-a385731e.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":50,"healthState":"Healthy","provisioningState":"Provisioned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--teqbk0k","name":"containerapp000003--teqbk0k","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-06T16:37:33+00:00","fqdn":"containerapp000003--teqbk0k.ashyocean-a385731e.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.00,"memory":"2Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":50,"healthState":"Healthy","provisioningState":"Provisioned"}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--wf7t4ds","name":"containerapp000003--wf7t4ds","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-22T22:12:29+00:00","fqdn":"containerapp000003--wf7t4ds.nicesky-842c81f6.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":50,"healthState":"Healthy","provisioningState":"Provisioned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--50l8jde","name":"containerapp000003--50l8jde","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-22T22:14:03+00:00","fqdn":"containerapp000003--50l8jde.nicesky-842c81f6.eastus2.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":1.00,"memory":"2Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":50,"healthState":"Healthy","provisioningState":"Provisioned"}}]}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1463'
+ - '1459'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 06 Jun 2022 16:38:02 GMT
+ - Wed, 22 Jun 2022 22:14:27 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_revision_label_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_revision_label_e2e.yaml
index 86f477461b7..94603d3e95d 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_revision_label_e2e.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_revision_label_e2e.yaml
@@ -18,7 +18,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-05-26T22:46:23Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T17:46:08Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:46:26 GMT
+ - Thu, 23 Jun 2022 17:46:12 GMT
expires:
- '-1'
pragma:
@@ -65,7 +65,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-05-26T22:46:31.2820632Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-05-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-05-26T22:46:31.2820632Z","modifiedDate":"2022-05-26T22:46:31.2820632Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"578e9176-2cbc-4bcd-a3b9-a215c700cfe0","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-23T17:46:18.7423171Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-23T22:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-23T17:46:18.7423171Z","modifiedDate":"2022-06-23T17:46:18.7423171Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -78,7 +78,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:46:32 GMT
+ - Thu, 23 Jun 2022 17:46:19 GMT
expires:
- '-1'
location:
@@ -119,7 +119,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-05-26T22:46:31.2820632Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-05-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-05-26T22:46:31.2820632Z","modifiedDate":"2022-05-26T22:46:31.2820632Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"578e9176-2cbc-4bcd-a3b9-a215c700cfe0","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-23T17:46:18.7423171Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-23T22:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-23T17:46:18.7423171Z","modifiedDate":"2022-06-23T17:46:18.7423171Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:02 GMT
+ - Thu, 23 Jun 2022 17:46:50 GMT
expires:
- '-1'
pragma:
@@ -175,7 +175,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01
response:
body:
- string: '{"primarySharedKey":"jqp641ZYmljIcLPwXVjYn39ad5IGN+8XELoB7rRC0/EOYB8IXCAiG7d75VAXcXlmXvbO+SpA5jmlT9bLQgQNfg==","secondarySharedKey":"Rk0cnP2aDe2b1v6BW2e1rvg+RHrcwaHfMIfKLFA9v849JZRFDzGYbOyuvdQXFifXt3+rT55X5XMLQJi/6jO7bA=="}'
+ string: '{"primarySharedKey":"2ty+JZyYQglASkpg3EFyy2cltY5Y1wgJ1p8fPgqdvsntQKHcqhE4E+DZu3od+eicbnRLrLid1BH7YrSwApvcYw==","secondarySharedKey":"dYhFoXtqDorDLmt3OuYvcT/9A/SsF8sGlBb/gkE2nRWy49FhTr8kmUWEmDdHKYpF0lv0OYn9MC0+Qt6mYgnsGg=="}'
headers:
access-control-allow-origin:
- '*'
@@ -188,7 +188,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:05 GMT
+ - Thu, 23 Jun 2022 17:46:52 GMT
expires:
- '-1'
pragma:
@@ -231,7 +231,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-05-26T22:46:23Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-23T17:46:08Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -240,7 +240,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:06 GMT
+ - Thu, 23 Jun 2022 17:46:54 GMT
expires:
- '-1'
pragma:
@@ -275,42 +275,50 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:06 GMT
+ - Thu, 23 Jun 2022 17:46:54 GMT
expires:
- '-1'
pragma:
@@ -345,42 +353,50 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:07 GMT
+ - Thu, 23 Jun 2022 17:46:54 GMT
expires:
- '-1'
pragma:
@@ -395,14 +411,13 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "northeurope", "tags": null, "properties": {"daprAIInstrumentationKey":
- null, "vnetConfiguration": null, "internalLoadBalancerEnabled": false, "appLogsConfiguration":
- {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b", "sharedKey": "jqp641ZYmljIcLPwXVjYn39ad5IGN+8XELoB7rRC0/EOYB8IXCAiG7d75VAXcXlmXvbO+SpA5jmlT9bLQgQNfg=="}},
+ body: '{"location": "northeurope", "properties": {"vnetConfiguration": {"internal":
+ false}, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration":
+ {"customerId": "578e9176-2cbc-4bcd-a3b9-a215c700cfe0", "sharedKey": "2ty+JZyYQglASkpg3EFyy2cltY5Y1wgJ1p8fPgqdvsntQKHcqhE4E+DZu3od+eicbnRLrLid1BH7YrSwApvcYw=="}},
"zoneRedundant": false}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -410,31 +425,31 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '428'
+ - '357'
Content-Type:
- application/json
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:47:02.8744012Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:47:02.8744012Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"happyrock-e48f78c1.northeurope.azurecontainerapps.io","staticIp":"20.123.126.171","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"578e9176-2cbc-4bcd-a3b9-a215c700cfe0"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/f94f87c7-c435-49f2-b983-5ddb2af6ba43?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/01d14a42-6970-4df1-b305-9e13d7505984?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '807'
+ - '806'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:12 GMT
+ - Thu, 23 Jun 2022 17:47:04 GMT
expires:
- '-1'
pragma:
@@ -468,23 +483,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/01d14a42-6970-4df1-b305-9e13d7505984?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/01d14a42-6970-4df1-b305-9e13d7505984","name":"01d14a42-6970-4df1-b305-9e13d7505984","status":"InProgress","startTime":"2022-06-23T17:47:04.191406"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '288'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:14 GMT
+ - Thu, 23 Jun 2022 17:47:10 GMT
expires:
- '-1'
pragma:
@@ -518,23 +533,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/01d14a42-6970-4df1-b305-9e13d7505984?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/01d14a42-6970-4df1-b305-9e13d7505984","name":"01d14a42-6970-4df1-b305-9e13d7505984","status":"InProgress","startTime":"2022-06-23T17:47:04.191406"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '288'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:18 GMT
+ - Thu, 23 Jun 2022 17:47:40 GMT
expires:
- '-1'
pragma:
@@ -568,23 +583,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/01d14a42-6970-4df1-b305-9e13d7505984?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/01d14a42-6970-4df1-b305-9e13d7505984","name":"01d14a42-6970-4df1-b305-9e13d7505984","status":"Succeeded","startTime":"2022-06-23T17:47:04.191406"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '287'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:22 GMT
+ - Thu, 23 Jun 2022 17:48:10 GMT
expires:
- '-1'
pragma:
@@ -618,23 +633,23 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:47:02.8744012","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:47:02.8744012"},"properties":{"provisioningState":"Succeeded","defaultDomain":"happyrock-e48f78c1.northeurope.azurecontainerapps.io","staticIp":"20.123.126.171","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"578e9176-2cbc-4bcd-a3b9-a215c700cfe0"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '806'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:25 GMT
+ - Thu, 23 Jun 2022 17:48:11 GMT
expires:
- '-1'
pragma:
@@ -658,49 +673,77 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp env show
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:30 GMT
+ - Thu, 23 Jun 2022 17:48:12 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -708,33 +751,33 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp env show
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:47:02.8744012","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:47:02.8744012"},"properties":{"provisioningState":"Succeeded","defaultDomain":"happyrock-e48f78c1.northeurope.azurecontainerapps.io","staticIp":"20.123.126.171","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"578e9176-2cbc-4bcd-a3b9-a215c700cfe0"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '806'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:34 GMT
+ - Thu, 23 Jun 2022 17:48:16 GMT
expires:
- '-1'
pragma:
@@ -758,49 +801,77 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:38 GMT
+ - Thu, 23 Jun 2022 17:48:16 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -808,33 +879,33 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:47:02.8744012","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:47:02.8744012"},"properties":{"provisioningState":"Succeeded","defaultDomain":"happyrock-e48f78c1.northeurope.azurecontainerapps.io","staticIp":"20.123.126.171","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"578e9176-2cbc-4bcd-a3b9-a215c700cfe0"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '806'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:41 GMT
+ - Thu, 23 Jun 2022 17:48:18 GMT
expires:
- '-1'
pragma:
@@ -858,83 +929,122 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:45 GMT
+ - Thu, 23 Jun 2022 17:48:18 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"location": "northeurope", "identity": {"type": "None"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"ingress": {"external": true, "targetPort": 80, "transport":
+ "auto"}}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
+ "name": "containerapp000003"}]}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
+ Content-Length:
+ - '474'
+ Content-Type:
+ - application/json
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:48:25.0244816Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/afac3e93-40e0-461c-9ed7-1ba1d3140bac?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '805'
+ - '1386'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:48 GMT
+ - Thu, 23 Jun 2022 17:48:27 GMT
expires:
- '-1'
pragma:
@@ -943,17 +1053,17 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -962,29 +1072,29 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/afac3e93-40e0-461c-9ed7-1ba1d3140bac?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/afac3e93-40e0-461c-9ed7-1ba1d3140bac","name":"afac3e93-40e0-461c-9ed7-1ba1d3140bac","status":"InProgress","startTime":"2022-06-23T17:48:26.029281"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '282'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:52 GMT
+ - Thu, 23 Jun 2022 17:48:33 GMT
expires:
- '-1'
pragma:
@@ -1012,29 +1122,29 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/afac3e93-40e0-461c-9ed7-1ba1d3140bac?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Waiting","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/afac3e93-40e0-461c-9ed7-1ba1d3140bac","name":"afac3e93-40e0-461c-9ed7-1ba1d3140bac","status":"Succeeded","startTime":"2022-06-23T17:48:26.029281"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '805'
+ - '281'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:47:56 GMT
+ - Thu, 23 Jun 2022 17:49:03 GMT
expires:
- '-1'
pragma:
@@ -1062,29 +1172,30 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --environment --ingress --target-port
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Succeeded","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:48:25.0244816"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--cyywtzl","latestRevisionFqdn":"containerapp000003--cyywtzl.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '807'
+ - '1514'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:00 GMT
+ - Thu, 23 Jun 2022 17:49:03 GMT
expires:
- '-1'
pragma:
@@ -1112,7 +1223,7 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env show
+ - containerapp ingress show
Connection:
- keep-alive
ParameterSetName:
@@ -1125,42 +1236,50 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:01 GMT
+ - Thu, 23 Jun 2022 17:49:04 GMT
expires:
- '-1'
pragma:
@@ -1178,33 +1297,34 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env show
+ - containerapp ingress show
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Succeeded","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:48:25.0244816"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--cyywtzl","latestRevisionFqdn":"containerapp000003--cyywtzl.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '807'
+ - '1514'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:04 GMT
+ - Thu, 23 Jun 2022 17:49:08 GMT
expires:
- '-1'
pragma:
@@ -1236,7 +1356,7 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port
+ - -g -n --environment --ingress --target-port --image
User-Agent:
- AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
@@ -1245,42 +1365,50 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:04 GMT
+ - Thu, 23 Jun 2022 17:49:08 GMT
expires:
- '-1'
pragma:
@@ -1298,7 +1426,7 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1306,25 +1434,25 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port
+ - -g -n --environment --ingress --target-port --image
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Succeeded","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:47:02.8744012","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:47:02.8744012"},"properties":{"provisioningState":"Succeeded","defaultDomain":"happyrock-e48f78c1.northeurope.azurecontainerapps.io","staticIp":"20.123.126.171","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"578e9176-2cbc-4bcd-a3b9-a215c700cfe0"}},"zoneRedundant":false}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '807'
+ - '806'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:07 GMT
+ - Thu, 23 Jun 2022 17:49:10 GMT
expires:
- '-1'
pragma:
@@ -1356,7 +1484,7 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port
+ - -g -n --environment --ingress --target-port --image
User-Agent:
- AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
@@ -1365,42 +1493,50 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:07 GMT
+ - Thu, 23 Jun 2022 17:49:10 GMT
expires:
- '-1'
pragma:
@@ -1415,17 +1551,13 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "northeurope", "identity": {"type": "None", "userAssignedIdentities":
- null}, "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress":
- {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "traffic":
- null, "customDomains": null}, "dapr": null, "registries": null}, "template":
- {"revisionSuffix": null, "containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
- "name": "containerapp000003", "command": null, "args": null, "env": null, "resources":
- null, "volumeMounts": null}], "scale": null, "volumes": null}}, "tags": null}'
+ body: '{"location": "northeurope", "identity": {"type": "None"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"ingress": {"external": true, "targetPort": 80, "transport":
+ "auto"}}, "template": {"containers": [{"image": "nginx", "name": "containerapp000003"}]}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -1433,32 +1565,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '799'
+ - '420'
Content-Type:
- application/json
ParameterSetName:
- - -g -n --environment --ingress --target-port
+ - -g -n --environment --ingress --target-port --image
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888Z","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:11.527888Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:49:13.2928521Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--cyywtzl","latestRevisionFqdn":"containerapp000003--cyywtzl.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/39d00265-9582-4ac5-80da-c6d7301861af?api-version=2022-03-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/503d8857-e410-4f00-83ff-084fb5362f69?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1408'
+ - '1462'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:13 GMT
+ - Thu, 23 Jun 2022 17:49:17 GMT
expires:
- '-1'
pragma:
@@ -1490,26 +1622,25 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port
+ - -g -n --environment --ingress --target-port --image
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/503d8857-e410-4f00-83ff-084fb5362f69?api-version=2022-03-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:11.527888"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--ie56ifz","latestRevisionFqdn":"containerapp000003--ie56ifz.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/503d8857-e410-4f00-83ff-084fb5362f69","name":"503d8857-e410-4f00-83ff-084fb5362f69","status":"Succeeded","startTime":"2022-06-23T17:49:15.3404961"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1515'
+ - '282'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:16 GMT
+ - Thu, 23 Jun 2022 17:49:22 GMT
expires:
- '-1'
pragma:
@@ -1541,26 +1672,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port
+ - -g -n --environment --ingress --target-port --image
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:11.527888"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--ie56ifz","latestRevisionFqdn":"containerapp000003--ie56ifz.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:49:13.2928521"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--g8fzp0n","latestRevisionFqdn":"containerapp000003--g8fzp0n.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1515'
+ - '1460'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:21 GMT
+ - Thu, 23 Jun 2022 17:49:23 GMT
expires:
- '-1'
pragma:
@@ -1584,50 +1715,77 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision set-mode
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port
+ - -g -n --mode
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:11.527888"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--ie56ifz","latestRevisionFqdn":"containerapp000003--ie56ifz.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1514'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:26 GMT
+ - Thu, 23 Jun 2022 17:49:23 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -1639,65 +1797,159 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp ingress show
+ - containerapp revision set-mode
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -n --mode
User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:49:13.2928521"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--g8fzp0n","latestRevisionFqdn":"containerapp000003--g8fzp0n.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '3551'
+ - '1460'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:26 GMT
+ - Thu, 23 Jun 2022 17:49:27 GMT
expires:
- '-1'
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
vary:
- - Accept-Encoding
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "North Europe", "identity": {"type": "None"}, "properties":
+ {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
+ "configuration": {"secrets": [], "activeRevisionsMode": "multiple", "ingress":
+ {"external": true, "targetPort": 80, "transport": "Auto", "traffic": [{"weight":
+ 100, "latestRevision": true}], "allowInsecure": false}}, "template": {"containers":
+ [{"image": "nginx", "name": "containerapp000003", "resources": {"cpu": 0.5,
+ "memory": "1Gi"}}], "scale": {"maxReplicas": 10}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp revision set-mode
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '623'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --mode
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:49:30.3865157Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--g8fzp0n","latestRevisionFqdn":"containerapp000003--g8fzp0n.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/762960e7-2ff5-4ecb-b0a8-2692a15ffb9f?api-version=2022-03-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1464'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 23 Jun 2022 17:49:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp revision set-mode
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --mode
+ User-Agent:
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/762960e7-2ff5-4ecb-b0a8-2692a15ffb9f?api-version=2022-03-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/762960e7-2ff5-4ecb-b0a8-2692a15ffb9f","name":"762960e7-2ff5-4ecb-b0a8-2692a15ffb9f","status":"Succeeded","startTime":"2022-06-23T17:49:31.6316126"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-05-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 23 Jun 2022 17:49:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-powered-by:
+ - ASP.NET
status:
code: 200
message: OK
@@ -1709,30 +1961,30 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp ingress show
+ - containerapp revision set-mode
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -n --mode
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:11.527888"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--ie56ifz","latestRevisionFqdn":"containerapp000003--ie56ifz.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:49:30.3865157"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--g8fzp0n","latestRevisionFqdn":"containerapp000003--g8fzp0n.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1514'
+ - '1462'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:28 GMT
+ - Thu, 23 Jun 2022 17:49:39 GMT
expires:
- '-1'
pragma:
@@ -1760,11 +2012,11 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision list
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --image
+ - -g -n --all --query
User-Agent:
- AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
@@ -1773,42 +2025,50 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:28 GMT
+ - Thu, 23 Jun 2022 17:49:39 GMT
expires:
- '-1'
pragma:
@@ -1826,33 +2086,33 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision list
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --image
+ - -g -n --all --query
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:47:11.7103265","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:47:11.7103265"},"properties":{"provisioningState":"Succeeded","defaultDomain":"wittyforest-5acee1e7.northeurope.azurecontainerapps.io","staticIp":"20.107.155.53","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6d5e7bb1-20f4-4ed7-9045-75cf8d280d8b"}},"zoneRedundant":false}}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--cyywtzl","name":"containerapp000003--cyywtzl","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-23T17:48:27+00:00","fqdn":"containerapp000003--cyywtzl.happyrock-e48f78c1.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":false,"replicas":0,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--g8fzp0n","name":"containerapp000003--g8fzp0n","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-23T17:49:15+00:00","fqdn":"containerapp000003--g8fzp0n.happyrock-e48f78c1.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned"}}]}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '807'
+ - '1418'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:30 GMT
+ - Thu, 23 Jun 2022 17:49:42 GMT
expires:
- '-1'
pragma:
@@ -1880,11 +2140,11 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision label add
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --image
+ - -g -n --revision --label
User-Agent:
- AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
@@ -1893,42 +2153,50 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:30 GMT
+ - Thu, 23 Jun 2022 17:49:42 GMT
expires:
- '-1'
pragma:
@@ -1943,50 +2211,37 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "northeurope", "identity": {"type": "None", "userAssignedIdentities":
- null}, "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress":
- {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "traffic":
- null, "customDomains": null}, "dapr": null, "registries": null}, "template":
- {"revisionSuffix": null, "containers": [{"image": "nginx", "name": "containerapp000003",
- "command": null, "args": null, "env": null, "resources": null, "volumeMounts":
- null}], "scale": null, "volumes": null}}, "tags": null}'
+ body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision label add
Connection:
- keep-alive
- Content-Length:
- - '745'
- Content-Type:
- - application/json
ParameterSetName:
- - -g -n --environment --ingress --target-port --image
+ - -g -n --revision --label
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: PUT
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:32.5518193Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--ie56ifz","latestRevisionFqdn":"containerapp000003--ie56ifz.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:49:30.3865157"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--g8fzp0n","latestRevisionFqdn":"containerapp000003--g8fzp0n.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/62906bb4-85d5-411f-b774-d8414da7197f?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1463'
+ - '1462'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:36 GMT
+ - Thu, 23 Jun 2022 17:49:44 GMT
expires:
- '-1'
pragma:
@@ -1995,17 +2250,17 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-async-operation-timeout:
- - PT15M
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
x-powered-by:
- ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2014,30 +2269,29 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision label add
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --image
+ - -g -n --revision --label
User-Agent:
- python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--cyywtzl?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:32.5518193"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--cyywtzl","name":"containerapp000003--cyywtzl","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-23T17:48:27+00:00","fqdn":"containerapp000003--cyywtzl.happyrock-e48f78c1.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":false,"replicas":0,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1462'
+ - '729'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:36 GMT
+ - Thu, 23 Jun 2022 17:49:46 GMT
expires:
- '-1'
pragma:
@@ -2058,56 +2312,59 @@ interactions:
code: 200
message: OK
- request:
- body: null
+ body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 100,
+ "latestRevision": true}, {"revisionName": "containerapp000003--cyywtzl", "weight":
+ 0, "latestRevision": false, "label": "label000005"}]}}}}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision label add
Connection:
- keep-alive
+ Content-Length:
+ - '213'
+ Content-Type:
+ - application/json
ParameterSetName:
- - -g -n --environment --ingress --target-port --image
+ - -g -n --revision --label
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
+ method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:32.5518193"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: ''
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1462'
- content-type:
- - application/json; charset=utf-8
+ - '0'
date:
- - Thu, 26 May 2022 22:48:40 GMT
+ - Thu, 23 Jun 2022 17:49:47 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/da04c53b-4882-4a63-a57e-5abf04e3181c?api-version=2022-03-01
pragma:
- no-cache
server:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '498'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
body: null
headers:
@@ -2116,30 +2373,29 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision label add
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --image
+ - -g -n --revision --label
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/da04c53b-4882-4a63-a57e-5abf04e3181c?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:32.5518193"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/da04c53b-4882-4a63-a57e-5abf04e3181c","name":"da04c53b-4882-4a63-a57e-5abf04e3181c","status":"InProgress","startTime":"2022-06-23T17:49:47.9634271"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1462'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:44 GMT
+ - Thu, 23 Jun 2022 17:49:53 GMT
expires:
- '-1'
pragma:
@@ -2163,34 +2419,34 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp revision label add
Connection:
- keep-alive
ParameterSetName:
- - -g -n --environment --ingress --target-port --image
+ - -g -n --revision --label
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:32.5518193"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:49:46.8469868"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--g8fzp0n","latestRevisionFqdn":"containerapp000003--g8fzp0n.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--cyywtzl","weight":0,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1461'
+ - '1543'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:48 GMT
+ - Thu, 23 Jun 2022 17:49:54 GMT
expires:
- '-1'
pragma:
@@ -2218,11 +2474,11 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp revision set-mode
+ - containerapp revision label add
Connection:
- keep-alive
ParameterSetName:
- - -g -n --mode
+ - -g -n --revision --label
User-Agent:
- AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
@@ -2231,42 +2487,50 @@ interactions:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US EUAP","East US 2 EUAP","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '3551'
+ - '4223'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:49 GMT
+ - Thu, 23 Jun 2022 17:49:55 GMT
expires:
- '-1'
pragma:
@@ -2284,34 +2548,34 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp revision set-mode
+ - containerapp revision label add
Connection:
- keep-alive
ParameterSetName:
- - -g -n --mode
+ - -g -n --revision --label
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:32.5518193"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-06-23T17:48:25.0244816","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-23T17:49:46.8469868"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["20.123.123.214","20.123.121.55","20.123.126.29"],"latestRevisionName":"containerapp000003--g8fzp0n","latestRevisionFqdn":"containerapp000003--g8fzp0n.happyrock-e48f78c1.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.happyrock-e48f78c1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--cyywtzl","weight":0,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1461'
+ - '1543'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:51 GMT
+ - Thu, 23 Jun 2022 17:49:56 GMT
expires:
- '-1'
pragma:
@@ -2332,57 +2596,36 @@ interactions:
code: 200
message: OK
- request:
- body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003",
- "name": "containerapp000003", "type": "Microsoft.App/containerApps", "location":
- "North Europe", "systemData": {"createdBy": "haroonfeisal@microsoft.com", "createdByType":
- "User", "createdAt": "2022-05-26T22:48:11.527888", "lastModifiedBy": "haroonfeisal@microsoft.com",
- "lastModifiedByType": "User", "lastModifiedAt": "2022-05-26T22:48:32.5518193"},
- "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002",
- "outboundIpAddresses": ["40.67.250.25", "40.67.250.221", "40.67.252.230"], "latestRevisionName":
- "containerapp000003--aixgh10", "latestRevisionFqdn": "containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io",
- "customDomainVerificationId": "99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E",
- "configuration": {"activeRevisionsMode": "multiple", "ingress": {"fqdn": "containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io",
- "external": true, "targetPort": 80, "transport": "Auto", "traffic": [{"weight":
- 100, "latestRevision": true}], "allowInsecure": false}, "secrets": []}, "template":
- {"containers": [{"image": "nginx", "name": "containerapp000003", "resources":
- {"cpu": 0.5, "memory": "1Gi"}}], "scale": {"maxReplicas": 10}}}, "identity":
- {"type": "None"}}'
+ body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp revision set-mode
+ - containerapp revision label add
Connection:
- keep-alive
- Content-Length:
- - '1549'
- Content-Type:
- - application/json
ParameterSetName:
- - -g -n --mode
+ - -g -n --revision --label
User-Agent:
- python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--g8fzp0n?api-version=2022-03-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:53.3572831Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--g8fzp0n","name":"containerapp000003--g8fzp0n","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-06-23T17:49:15+00:00","fqdn":"containerapp000003--g8fzp0n.happyrock-e48f78c1.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/8ba7356c-e643-4fc8-83e1-cefce15cf4e5?api-version=2022-03-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1465'
+ - '676'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:48:55 GMT
+ - Thu, 23 Jun 2022 17:49:59 GMT
expires:
- '-1'
pragma:
@@ -2391,2839 +2634,57 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-async-operation-timeout:
- - PT15M
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
x-powered-by:
- ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
- body: null
+ body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 100,
+ "latestRevision": true}, {"revisionName": "containerapp000003--cyywtzl", "weight":
+ 0, "label": "label000005"}, {"revisionName": "containerapp000003--g8fzp0n",
+ "weight": 0, "latestRevision": false, "label": "label000006"}]}}}}'
headers:
Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision set-mode
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --mode
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:53.3572831"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1464'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:48:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision set-mode
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --mode
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:53.3572831"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1464'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:01 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision set-mode
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --mode
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:53.3572831"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1463'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:04 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision list
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --all --query
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions?api-version=2022-03-01
- response:
- body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--ie56ifz","name":"containerapp000003--ie56ifz","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-05-26T22:48:14+00:00","fqdn":"containerapp000003--ie56ifz.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":false,"replicas":0,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--aixgh10","name":"containerapp000003--aixgh10","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-05-26T22:48:34+00:00","fqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned"}}]}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1422'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:06 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:07 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:48:53.3572831"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1463'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--ie56ifz?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--ie56ifz","name":"containerapp000003--ie56ifz","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-05-26T22:48:14+00:00","fqdn":"containerapp000003--ie56ifz.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":false,"replicas":0,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '731'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:11 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 100,
- "latestRevision": true}, {"revisionName": "containerapp000003--ie56ifz", "weight":
- 0, "latestRevision": false, "label": "label000005"}]}}}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- Content-Length:
- - '213'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Thu, 26 May 2022 22:49:13 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/5c4acb65-a941-4e24-af03-599071067fb6?api-version=2022-03-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:11.855859"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1543'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:14 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:11.855859"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1543'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:11.855859"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1542'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:11.855859"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1542'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:24 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--aixgh10?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--aixgh10","name":"containerapp000003--aixgh10","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-05-26T22:48:34+00:00","fqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '678'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 100,
- "latestRevision": true}, {"revisionName": "containerapp000003--ie56ifz", "weight":
- 0, "label": "label000005"}, {"revisionName": "containerapp000003--aixgh10",
- "weight": 0, "latestRevision": false, "label": "label000006"}]}}}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- Content-Length:
- - '299'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Thu, 26 May 2022 22:49:27 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/b63208a4-94cf-4583-8e6e-1052cd4b53da?api-version=2022-03-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:26.8621609"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":0,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:26.8621609"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":0,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:26.8621609"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":0,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:26.8621609"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":0,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:40 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:26.8621609"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":0,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:42 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:26.8621609"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":0,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1623'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:46 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --query
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --query
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:26.8621609"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":0,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1623'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:48 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic set
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision-weight --label-weight
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:49 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic set
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision-weight --label-weight
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:26.8621609"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":0,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":0,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1623'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:49 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic set
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision-weight --label-weight
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--ie56ifz?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--ie56ifz","name":"containerapp000003--ie56ifz","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-05-26T22:48:14+00:00","fqdn":"containerapp000003--ie56ifz.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":false,"replicas":0,"trafficWeight":0,"healthState":"Healthy","provisioningState":"Provisioned"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '731'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic set
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision-weight --label-weight
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--aixgh10?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003/revisions/containerapp000003--aixgh10","name":"containerapp000003--aixgh10","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2022-05-26T22:48:34+00:00","fqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.50,"memory":"1Gi"},"probes":[]}],"scale":{"maxReplicas":10}},"active":true,"replicas":1,"trafficWeight":100,"healthState":"Healthy","provisioningState":"Provisioned"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '678'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:52 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": "50",
- "latestRevision": true}, {"revisionName": "containerapp000003--ie56ifz", "weight":
- "25", "label": "label000005"}, {"revisionName": "containerapp000003--aixgh10",
- "weight": "25", "label": "label000006"}]}}}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic set
- Connection:
- - keep-alive
- Content-Length:
- - '281'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --revision-weight --label-weight
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Thu, 26 May 2022 22:49:55 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/440c433c-bedb-4a69-acd7-b1be15f7a380?api-version=2022-03-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
- 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 --label-weight
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:54.1108946"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":25,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1625'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:49:56 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic set
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --revision-weight --label-weight
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:54.1108946"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":25,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --query
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:01 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --query
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:54.1108946"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":25,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:04 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label swap
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --labels
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:04 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label swap
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --labels
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:49:54.1108946"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000005"},{"revisionName":"containerapp000003--aixgh10","weight":25,"label":"label000006"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:07 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 50,
- "latestRevision": true}, {"revisionName": "containerapp000003--ie56ifz", "weight":
- 25, "label": "label000006"}, {"revisionName": "containerapp000003--aixgh10",
- "weight": 25, "label": "label000005"}]}}}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label swap
- Connection:
- - keep-alive
- Content-Length:
- - '275'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --labels
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Thu, 26 May 2022 22:50:08 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/db24023e-333c-4998-a287-12389fb6243f?api-version=2022-03-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label swap
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --labels
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:07.8057897"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000006"},{"revisionName":"containerapp000003--aixgh10","weight":25,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1625'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:11 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label swap
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --labels
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:07.8057897"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000006"},{"revisionName":"containerapp000003--aixgh10","weight":25,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1625'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:14 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label swap
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --labels
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:07.8057897"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000006"},{"revisionName":"containerapp000003--aixgh10","weight":25,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:18 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:18 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:07.8057897"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000006"},{"revisionName":"containerapp000003--aixgh10","weight":25,"label":"label000005"}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1624'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:21 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 50,
- "latestRevision": true}, {"revisionName": "containerapp000003--ie56ifz", "weight":
- 25, "label": "label000006"}, {"revisionName": "containerapp000003--aixgh10",
- "weight": 25, "label": null}]}}}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- Content-Length:
- - '266'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Thu, 26 May 2022 22:50:23 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/d576d524-00ef-4cb3-a1b8-fb40801aeef3?api-version=2022-03-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:22.0741046"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000006"},{"revisionName":"containerapp000003--aixgh10","weight":25}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1603'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:24 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:22.0741046"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000006"},{"revisionName":"containerapp000003--aixgh10","weight":25}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1603'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:28 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:22.0741046"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000006"},{"revisionName":"containerapp000003--aixgh10","weight":25}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1602'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:31 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:32 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:22.0741046"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25,"label":"label000006"},{"revisionName":"containerapp000003--aixgh10","weight":25}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1602'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"properties": {"configuration": {"ingress": {"traffic": [{"weight": 50,
- "latestRevision": true}, {"revisionName": "containerapp000003--ie56ifz", "weight":
- 25, "label": null}, {"revisionName": "containerapp000003--aixgh10", "weight":
- 25}]}}}}'
- headers:
- Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp revision label remove
+ - containerapp revision label add
Connection:
- keep-alive
Content-Length:
- - '242'
+ - '299'
Content-Type:
- application/json
ParameterSetName:
- - -g -n --label
+ - -g -n --revision --label
User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
+ - AZURECLI/2.37.0 azsdk-python-mgmt-appcontainers/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
response:
body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Thu, 26 May 2022 22:50:36 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/1f059768-29cc-4bb0-aaa1-335cf2706fc4?api-version=2022-03-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:35.1008765"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25},{"revisionName":"containerapp000003--aixgh10","weight":25}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1581'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:38 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:35.1008765"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25},{"revisionName":"containerapp000003--aixgh10","weight":25}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1581'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp revision label remove
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --label
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:35.1008765"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25},{"revisionName":"containerapp000003--aixgh10","weight":25}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-05-01
- cache-control:
- - no-cache
- content-length:
- - '1580'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:45 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"}],"resourceTypes":[{"resourceType":"managedEnvironments","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","Central US EUAP","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3551'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 26 May 2022 22:50:46 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp ingress traffic show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.37.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003?api-version=2022-03-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp000003","name":"containerapp000003","type":"Microsoft.App/containerApps","location":"North
- Europe","systemData":{"createdBy":"haroonfeisal@microsoft.com","createdByType":"User","createdAt":"2022-05-26T22:48:11.527888","lastModifiedBy":"haroonfeisal@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-26T22:50:35.1008765"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","outboundIpAddresses":["40.67.250.25","40.67.250.221","40.67.252.230"],"latestRevisionName":"containerapp000003--aixgh10","latestRevisionFqdn":"containerapp000003--aixgh10.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","customDomainVerificationId":"99A6464610F70E526E50B6B7BECF7E0698398F28CB03C7A235D70FDF654D411E","configuration":{"activeRevisionsMode":"Multiple","ingress":{"fqdn":"containerapp000003.wittyforest-5acee1e7.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":50,"latestRevision":true},{"revisionName":"containerapp000003--ie56ifz","weight":25},{"revisionName":"containerapp000003--aixgh10","weight":25}],"allowInsecure":false}},"template":{"containers":[{"image":"nginx","name":"containerapp000003","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}'
+ string: '{"code":"ContainerAppOperationInProgress","message":"Cannot modify
+ a container app ''containerapp000003'' because there is an active provisioning
+ operation in progress. OperationId: ''da04c53b-4882-4a63-a57e-5abf04e3181c''."}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-05-01
cache-control:
- no-cache
content-length:
- - '1580'
+ - '221'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 26 May 2022 22:50:47 GMT
+ - Thu, 23 Jun 2022 17:50:00 GMT
expires:
- '-1'
pragma:
@@ -5232,15 +2693,13 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 409
+ message: Conflict
version: 1
diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
index 2bac10073b3..c501957d151 100644
--- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
+++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
@@ -30,7 +30,7 @@ def test_containerapp_identity_e2e(self, resource_group):
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
- while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ while containerapp_env["provisioningState"].lower() == "waiting":
time.sleep(5)
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
@@ -80,7 +80,7 @@ def test_containerapp_identity_system(self, resource_group):
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
- while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ while containerapp_env["provisioningState"].lower() == "waiting":
time.sleep(5)
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
@@ -119,7 +119,7 @@ def test_containerapp_identity_user(self, resource_group):
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
- while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ while containerapp_env["provisioningState"].lower() == "waiting":
time.sleep(5)
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
@@ -177,7 +177,7 @@ def test_containerapp_ingress_e2e(self, resource_group):
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
- while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ while containerapp_env["provisioningState"].lower() == "waiting":
time.sleep(5)
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
@@ -192,7 +192,7 @@ def test_containerapp_ingress_e2e(self, resource_group):
containerapp_def = self.cmd('containerapp show -g {} -n {}'.format(resource_group, ca_name)).get_output_in_json()
- self.assertEqual("fqdn" in containerapp_def["properties"]["configuration"], False)
+ self.assertEqual("fqdn" in containerapp_def["configuration"], False)
self.cmd('containerapp ingress enable -g {} -n {} --type internal --target-port 81 --allow-insecure --transport http2'.format(resource_group, ca_name, env_name))
@@ -224,7 +224,7 @@ def test_containerapp_ingress_traffic_e2e(self, resource_group):
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
- while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ while containerapp_env["provisioningState"].lower() == "waiting":
time.sleep(5)
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
@@ -235,6 +235,8 @@ def test_containerapp_ingress_traffic_e2e(self, resource_group):
JMESPathCheck('targetPort', 80),
])
+ self.cmd('containerapp revision set-mode -g {} -n {} --mode multiple'.format(resource_group, ca_name, env_name))
+
self.cmd('containerapp ingress traffic set -g {} -n {} --revision-weight latest=100'.format(resource_group, ca_name), checks=[
JMESPathCheck('[0].latestRevision', True),
JMESPathCheck('[0].weight', 100),
@@ -261,7 +263,7 @@ def test_containerapp_ingress_traffic_e2e(self, resource_group):
revisions_list = self.cmd('containerapp revision list -g {} -n {}'.format(resource_group, ca_name)).get_output_in_json()
for revision in revisions_list:
- self.assertEqual(revision["properties"]["trafficWeight"], 50)
+ self.assertEqual(revision["trafficWeight"], 50)
@AllowLargeResponse(8192)
@live_only() # encounters 'CannotOverwriteExistingCassetteException' only when run from recording (passes when run live)
@@ -278,7 +280,7 @@ def test_containerapp_custom_domains_e2e(self, resource_group):
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
- while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ while containerapp_env["provisioningState"].lower() == "waiting":
time.sleep(5)
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
@@ -302,7 +304,7 @@ def test_containerapp_custom_domains_e2e(self, resource_group):
txt_name_2 = "asuid.{}".format(subdomain_2)
hostname_1 = "{}.{}".format(subdomain_1, zone_name)
hostname_2 = "{}.{}".format(subdomain_2, zone_name)
- verification_id = app["properties"]["customDomainVerificationId"]
+ verification_id = app["customDomainVerificationId"]
self.cmd("appservice domain create -g {} --hostname {} --contact-info=@'{}' --accept-terms".format(resource_group, zone_name, contacts)).get_output_in_json()
self.cmd('network dns record-set txt add-record -g {} -z {} -n {} -v {}'.format(resource_group, zone_name, txt_name_1, verification_id)).get_output_in_json()
self.cmd('network dns record-set txt add-record -g {} -z {} -n {} -v {}'.format(resource_group, zone_name, txt_name_2, verification_id)).get_output_in_json()
@@ -325,7 +327,7 @@ def test_containerapp_custom_domains_e2e(self, resource_group):
cert_thumbprint = self.cmd('containerapp env certificate list -n {} -g {} -c {}'.format(env_name, resource_group, cert_id), checks=[
JMESPathCheck('length(@)', 1),
JMESPathCheck('[0].id', cert_id),
- ]).get_output_in_json()[0]["properties"]["thumbprint"]
+ ]).get_output_in_json()[0]["thumbprint"]
# add binding by cert thumbprint
self.cmd('containerapp hostname bind -g {} -n {} --hostname {} --thumbprint {}'.format(resource_group, ca_name, hostname_2, cert_thumbprint), expect_failure=True)
@@ -407,7 +409,7 @@ def test_containerapp_dapr_e2e(self, resource_group):
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
- while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ while containerapp_env["provisioningState"].lower() == "waiting":
time.sleep(5)
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
@@ -421,10 +423,10 @@ def test_containerapp_dapr_e2e(self, resource_group):
])
self.cmd('containerapp show -g {} -n {}'.format(resource_group, ca_name), checks=[
- JMESPathCheck('properties.configuration.dapr.appId', "containerapp1"),
- JMESPathCheck('properties.configuration.dapr.appPort', 80),
- JMESPathCheck('properties.configuration.dapr.appProtocol', "http"),
- JMESPathCheck('properties.configuration.dapr.enabled', True),
+ JMESPathCheck('configuration.dapr.appId', "containerapp1"),
+ JMESPathCheck('configuration.dapr.appPort', 80),
+ JMESPathCheck('configuration.dapr.appProtocol', "http"),
+ JMESPathCheck('configuration.dapr.enabled', True),
])
self.cmd('containerapp dapr disable -g {} -n {}'.format(resource_group, ca_name, env_name), checks=[
@@ -435,10 +437,10 @@ def test_containerapp_dapr_e2e(self, resource_group):
])
self.cmd('containerapp show -g {} -n {}'.format(resource_group, ca_name), checks=[
- JMESPathCheck('properties.configuration.dapr.appId', "containerapp1"),
- JMESPathCheck('properties.configuration.dapr.appPort', 80),
- JMESPathCheck('properties.configuration.dapr.appProtocol', "http"),
- JMESPathCheck('properties.configuration.dapr.enabled', False),
+ JMESPathCheck('configuration.dapr.appId', "containerapp1"),
+ JMESPathCheck('configuration.dapr.appPort', 80),
+ JMESPathCheck('configuration.dapr.appProtocol', "http"),
+ JMESPathCheck('configuration.dapr.enabled', False),
])
@@ -458,7 +460,7 @@ def test_containerapp_env_storage(self, resource_group):
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
- while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ while containerapp_env["provisioningState"].lower() == "waiting":
time.sleep(5)
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
@@ -476,13 +478,13 @@ def test_containerapp_env_storage(self, resource_group):
])
self.cmd('containerapp env storage list -g {} -n {}'.format(resource_group, env_name), checks=[
- JMESPathCheck('[0].name', storage_name),
+ JMESPathCheck('value[0].name', storage_name),
])
self.cmd('containerapp env storage remove -g {} -n {} --storage-name {} --yes'.format(resource_group, env_name, storage_name))
self.cmd('containerapp env storage list -g {} -n {}'.format(resource_group, env_name), checks=[
- JMESPathCheck('length(@)', 0),
+ JMESPathCheck('length(@.value)', 0),
])
@@ -501,7 +503,7 @@ def test_containerapp_revision_label_e2e(self, resource_group):
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
- while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ while containerapp_env["provisioningState"].lower() == "waiting":
time.sleep(5)
containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env_name)).get_output_in_json()
@@ -558,4 +560,4 @@ def test_containerapp_revision_label_e2e(self, resource_group):
traffic_weight = self.cmd(f"containerapp ingress traffic show -g {resource_group} -n {ca_name}").get_output_in_json()
- self.assertEqual(len([w for w in traffic_weight if "label" in w]), 0)
+ self.assertEqual(len([w for w in traffic_weight if "label" in w and w["label"]]), 0)