diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst index 56dec774cd2..e32cabf426e 100644 --- a/src/containerapp/HISTORY.rst +++ b/src/containerapp/HISTORY.rst @@ -3,6 +3,14 @@ Release History =============== +0.3.9 +++++++ +* 'az containerapp create': Allow authenticating with managed identity (MSI) instead of ACR username & password +* 'az containerapp show': Add parameter --show-secrets to show secret values +* 'az containerapp env create': Add better message when polling times out +* 'az containerapp env certificate upload': Fix bug where certificate uploading failed with error "Certificate must contain one private key" +* 'az containerapp env certificate upload': Fix bug where replacing invalid character in certificate name failed + 0.3.8 ++++++ * 'az containerapp update': Fix bug where --yaml would error out due to secret values diff --git a/src/containerapp/azext_containerapp/_clients.py b/src/containerapp/azext_containerapp/_clients.py index b562fb71e2e..85527e6dd7e 100644 --- a/src/containerapp/azext_containerapp/_clients.py +++ b/src/containerapp/azext_containerapp/_clients.py @@ -15,7 +15,7 @@ logger = get_logger(__name__) STABLE_API_VERSION = "2022-03-01" -POLLING_TIMEOUT = 60 # how many seconds before exiting +POLLING_TIMEOUT = 600 # how many seconds before exiting POLLING_SECONDS = 2 # how many seconds between requests diff --git a/src/containerapp/azext_containerapp/_constants.py b/src/containerapp/azext_containerapp/_constants.py index 4cdac4ac6b7..97d91b76bdd 100644 --- a/src/containerapp/azext_containerapp/_constants.py +++ b/src/containerapp/azext_containerapp/_constants.py @@ -14,7 +14,7 @@ LOG_ANALYTICS_RP = "Microsoft.OperationalInsights" CONTAINER_APPS_RP = "Microsoft.App" -MAX_ENV_PER_LOCATION = 2 +MAX_ENV_PER_LOCATION = 5 MICROSOFT_SECRET_SETTING_NAME = "microsoft-provider-authentication-secret" FACEBOOK_SECRET_SETTING_NAME = "facebook-provider-authentication-secret" @@ -29,3 +29,5 @@ NAME_INVALID = "Invalid" NAME_ALREADY_EXISTS = "AlreadyExists" + +HELLO_WORLD_IMAGE = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest" diff --git a/src/containerapp/azext_containerapp/_params.py b/src/containerapp/azext_containerapp/_params.py index 3c0aa1a96cf..e7cc6cdddde 100644 --- a/src/containerapp/azext_containerapp/_params.py +++ b/src/containerapp/azext_containerapp/_params.py @@ -94,6 +94,7 @@ def load_arguments(self, _): c.argument('registry_pass', validator=validate_registry_pass, options_list=['--registry-password'], help="The password to log in to container registry. If stored as a secret, value must start with \'secretref:\' followed by the secret name.") c.argument('registry_user', validator=validate_registry_user, options_list=['--registry-username'], help="The username to log in to container registry.") c.argument('secrets', nargs='*', options_list=['--secrets', '-s'], help="A list of secret(s) for the container app. Space-separated values in 'key=value' format.") + c.argument('registry_identity', help="A Managed Identity to authenticate with the registry server instead of username/password. Use a resource ID or 'system' for user-defined and system-defined identities, respectively. The registry must be an ACR. If possible, an 'acrpull' role assignemnt will be created for the identity automatically.") # Ingress with self.argument_context('containerapp', arg_group='Ingress') as c: @@ -111,6 +112,9 @@ def load_arguments(self, _): with self.argument_context('containerapp create', arg_group='Container') as c: c.argument('image', options_list=['--image', '-i'], help="Container image, e.g. publisher/image-name:tag.") + with self.argument_context('containerapp show') as c: + c.argument('show_secrets', help="Show Containerapp secrets.", action='store_true') + with self.argument_context('containerapp update', arg_group='Container') as c: c.argument('image', options_list=['--image', '-i'], help="Container image, e.g. publisher/image-name:tag.") diff --git a/src/containerapp/azext_containerapp/_utils.py b/src/containerapp/azext_containerapp/_utils.py index c012f7da845..d2e99105483 100644 --- a/src/containerapp/azext_containerapp/_utils.py +++ b/src/containerapp/azext_containerapp/_utils.py @@ -12,10 +12,15 @@ from datetime import datetime from dateutil.relativedelta import relativedelta from azure.cli.core.azclierror import (ValidationError, RequiredArgumentMissingError, CLIInternalError, - ResourceNotFoundError, FileOperationError, CLIError) + ResourceNotFoundError, FileOperationError, CLIError, InvalidArgumentValueError, UnauthorizedError) from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.command_modules.appservice.utils import _normalize_location from azure.cli.command_modules.network._client_factory import network_client_factory +from azure.cli.command_modules.role.custom import create_role_assignment +from azure.cli.command_modules.acr.custom import acr_show +from azure.cli.core.commands.client_factory import get_mgmt_service_client +from azure.cli.core.profiles import ResourceType +from azure.mgmt.containerregistry import ContainerRegistryManagementClient from knack.log import get_logger from msrestazure.tools import parse_resource_id, is_valid_resource_id, resource_id @@ -1046,7 +1051,7 @@ def generate_randomized_cert_name(thumbprint, prefix, initial="rg"): cert_name = "{}-{}-{}-{:04}".format(prefix[:14], initial[:14], thumbprint[:4].lower(), randint(0, 9999)) for c in cert_name: if not (c.isalnum() or c == '-' or c == '.'): - cert_name.replace(c, '-') + cert_name = cert_name.replace(c, '-') return cert_name.lower() @@ -1307,8 +1312,7 @@ def load_cert_file(file_path, cert_password=None): x509 = p12.get_certificate() digest_algorithm = 'sha256' thumbprint = x509.digest(digest_algorithm).decode("utf-8").replace(':', '') - pem_data = crypto.dump_certificate(crypto.FILETYPE_PEM, x509) - blob = b64encode(pem_data).decode("utf-8") + blob = b64encode(cert_data).decode("utf-8") else: raise FileOperationError('Not a valid file type. Only .PFX and .PEM files are supported.') except Exception as e: @@ -1431,3 +1435,31 @@ def set_managed_identity(cmd, resource_group_name, containerapp_def, system_assi if not isExisting: containerapp_def["identity"]["userAssignedIdentities"][r] = {} + + +def create_acrpull_role_assignment(cmd, registry_server, registry_identity=None, service_principal=None, skip_error=False): + if registry_identity: + registry_identity_parsed = parse_resource_id(registry_identity) + registry_identity_name, registry_identity_rg = registry_identity_parsed.get("name"), registry_identity_parsed.get("resource_group") + sp_id = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_MSI).user_assigned_identities.get(resource_name=registry_identity_name, resource_group_name=registry_identity_rg).principal_id + else: + sp_id = service_principal + + client = get_mgmt_service_client(cmd.cli_ctx, ContainerRegistryManagementClient).registries + acr_id = acr_show(cmd, client, registry_server[: registry_server.rindex(ACR_IMAGE_SUFFIX)]).id + try: + create_role_assignment(cmd, role="acrpull", assignee=sp_id, scope=acr_id) + except Exception as e: + message = (f"Role assignment failed with error message: \"{' '.join(e.args)}\". \n" + f"To add the role assignment manually, please run 'az role assignment create --assignee {sp_id} --scope {acr_id} --role acrpull'. \n" + "You may have to restart the containerapp with 'az containerapp revision restart'.") + if skip_error: + logger.error(message) + else: + raise UnauthorizedError(message) + + +def is_registry_msi_system(identity): + if identity is None: + return False + return identity.lower() == "system" diff --git a/src/containerapp/azext_containerapp/_validators.py b/src/containerapp/azext_containerapp/_validators.py index 4695148fec0..4fb1330bfd7 100644 --- a/src/containerapp/azext_containerapp/_validators.py +++ b/src/containerapp/azext_containerapp/_validators.py @@ -4,18 +4,32 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long -from azure.cli.core.azclierror import (ValidationError, ResourceNotFoundError) +from azure.cli.core.azclierror import (ValidationError, ResourceNotFoundError, InvalidArgumentValueError, + MutuallyExclusiveArgumentError) +from msrestazure.tools import is_valid_resource_id from knack.log import get_logger from ._clients import ContainerAppClient from ._ssh_utils import ping_container_app -from ._utils import safe_get +from ._utils import safe_get, is_registry_msi_system from ._constants import ACR_IMAGE_SUFFIX logger = get_logger(__name__) +# called directly from custom method bc otherwise it disrupts the --environment auto RID functionality +def validate_create(registry_identity, registry_pass, registry_user, registry_server, no_wait): + if registry_identity and (registry_pass or registry_user): + raise MutuallyExclusiveArgumentError("Cannot provide both registry identity and username/password") + if is_registry_msi_system(registry_identity) and no_wait: + raise MutuallyExclusiveArgumentError("--no-wait is not supported with system registry identity") + if registry_identity and not is_valid_resource_id(registry_identity) and not is_registry_msi_system(registry_identity): + raise InvalidArgumentValueError("--registry-identity must be an identity resource ID or 'system'") + if registry_identity and ACR_IMAGE_SUFFIX not in (registry_server or ""): + raise InvalidArgumentValueError("--registry-identity: expected an ACR registry (*.azurecr.io) for --registry-server") + + def _is_number(s): try: float(s) @@ -49,7 +63,7 @@ def validate_cpu(namespace): def validate_managed_env_name_or_id(cmd, namespace): from azure.cli.core.commands.client_factory import get_subscription_id - from msrestazure.tools import is_valid_resource_id, resource_id + from msrestazure.tools import resource_id if namespace.managed_env: if not is_valid_resource_id(namespace.managed_env): diff --git a/src/containerapp/azext_containerapp/commands.py b/src/containerapp/azext_containerapp/commands.py index fe284926d95..614b554fc32 100644 --- a/src/containerapp/azext_containerapp/commands.py +++ b/src/containerapp/azext_containerapp/commands.py @@ -7,7 +7,7 @@ # 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 ._validators import validate_ssh +from ._validators import validate_ssh, validate_create def transform_containerapp_output(app): diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 7e1dafd8664..d91e238684c 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -64,14 +64,13 @@ validate_container_app_name, _update_weights, get_vnet_location, register_provider_if_needed, generate_randomized_cert_name, _get_name, load_cert_file, check_cert_name_availability, validate_hostname, patch_new_custom_domain, get_custom_domains, _validate_revision_name, set_managed_identity, - clean_null_values, _populate_secret_values) - - + create_acrpull_role_assignment, is_registry_msi_system, clean_null_values, _populate_secret_values) +from ._validators import validate_create from ._ssh_utils import (SSH_DEFAULT_ENCODING, WebSocketConnection, read_ssh, get_stdin_writer, SSH_CTRL_C_MSG, SSH_BACKUP_ENCODING) from ._constants import (MAXIMUM_SECRET_LENGTH, MICROSOFT_SECRET_SETTING_NAME, FACEBOOK_SECRET_SETTING_NAME, GITHUB_SECRET_SETTING_NAME, GOOGLE_SECRET_SETTING_NAME, TWITTER_SECRET_SETTING_NAME, APPLE_SECRET_SETTING_NAME, CONTAINER_APPS_RP, - NAME_INVALID, NAME_ALREADY_EXISTS, ACR_IMAGE_SUFFIX) + NAME_INVALID, NAME_ALREADY_EXISTS, ACR_IMAGE_SUFFIX, HELLO_WORLD_IMAGE) logger = get_logger(__name__) @@ -328,9 +327,17 @@ def create_containerapp(cmd, no_wait=False, system_assigned=False, disable_warnings=False, - user_assigned=None): + user_assigned=None, + registry_identity=None): + if image and "/" in image and not registry_server: + registry_server = image[:image.index("/")] register_provider_if_needed(cmd, CONTAINER_APPS_RP) validate_container_app_name(name) + validate_create(registry_identity, registry_pass, registry_user, registry_server, no_wait) + + if registry_identity and not is_registry_msi_system(registry_identity): + logger.info("Creating an acrpull role assignment for the registry identity") + create_acrpull_role_assignment(cmd, registry_server, registry_identity, skip_error=True) if yaml: if image or managed_env or min_replicas or max_replicas or target_port or ingress or\ @@ -341,7 +348,7 @@ def create_containerapp(cmd, return create_containerapp_yaml(cmd=cmd, name=name, resource_group_name=resource_group_name, file_name=yaml, no_wait=no_wait) if not image: - image = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest" + image = HELLO_WORLD_IMAGE if managed_env is None: raise RequiredArgumentMissingError('Usage error: --environment is required if not using --yaml') @@ -382,19 +389,22 @@ def create_containerapp(cmd, secrets_def = parse_secret_flags(secrets) registries_def = None - if registry_server is not None: + if registry_server is not None and not is_registry_msi_system(registry_identity): registries_def = RegistryCredentialsModel + registries_def["server"] = registry_server # Infer credentials if not supplied and its azurecr - if registry_user is None or registry_pass is None: + if (registry_user is None or registry_pass is None) and registry_identity 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 not registry_identity: + 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) + 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) + else: + registries_def["identity"] = registry_identity dapr_def = None if dapr_enabled: @@ -450,7 +460,7 @@ def create_containerapp(cmd, container_def = ContainerModel container_def["name"] = container_name if container_name else name - container_def["image"] = image + container_def["image"] = image if not is_registry_msi_system(registry_identity) else HELLO_WORLD_IMAGE if env_vars is not None: container_def["env"] = parse_env_var_flags(env_vars) if startup_command is not None: @@ -475,10 +485,32 @@ def create_containerapp(cmd, containerapp_def["properties"]["template"] = template_def containerapp_def["tags"] = tags + if registry_identity: + if is_registry_msi_system(registry_identity): + set_managed_identity(cmd, resource_group_name, containerapp_def, system_assigned=True) + else: + set_managed_identity(cmd, resource_group_name, containerapp_def, user_assigned=[registry_identity]) + 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 is_registry_msi_system(registry_identity): + while r["properties"]["provisioningState"] == "InProgress": + r = ContainerAppClient.show(cmd, resource_group_name, name) + time.sleep(10) + logger.info("Creating an acrpull role assignment for the system identity") + system_sp = r["identity"]["principalId"] + create_acrpull_role_assignment(cmd, registry_server, registry_identity=None, service_principal=system_sp) + container_def["image"] = image + + registries_def = RegistryCredentialsModel + registries_def["server"] = registry_server + registries_def["identity"] = registry_identity + config_def["registries"] = [registries_def] + + 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)) @@ -813,11 +845,14 @@ def update_containerapp(cmd, no_wait) -def show_containerapp(cmd, name, resource_group_name): +def show_containerapp(cmd, name, resource_group_name, show_secrets=False): _validate_subscription_registered(cmd, CONTAINER_APPS_RP) try: - return ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name) + r = ContainerAppClient.show(cmd=cmd, resource_group_name=resource_group_name, name=name) + if show_secrets: + _get_existing_secrets(cmd, resource_group_name, name, r) + return r except CLIError as e: handle_raw_exception(e) @@ -938,7 +973,8 @@ def create_managed_environment(cmd, 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)) - not disable_warnings and logger.warning("\nContainer Apps environment created. To deploy a container app, use: az containerapp create --help\n") + if "properties" in r and "provisioningState" in r["properties"] and r["properties"]["provisioningState"].lower() == "succeeded": + not disable_warnings and logger.warning("\nContainer Apps environment created. To deploy a container app, use: az containerapp create --help\n") return r except Exception as e: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_container_acr.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_container_acr.yaml index c2fe2ee3194..b004ddd1522 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_container_acr.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_container_acr.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) 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-07-18T16:59:53Z"},"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-08-15T22:38:26Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:11 GMT + - Mon, 15 Aug 2022 22:38:39 GMT expires: - '-1' pragma: @@ -60,36 +60,29 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003?api-version=2021-12-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"b243907a-acf8-4680-93bd-15c6e2541181\",\r\n \"provisioningState\": \"Creating\",\r\n - \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\": - \"Mon, 18 Jul 2022 17:00: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\": - \"Tue, 19 Jul 2022 11:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n - \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Mon, 18 Jul 2022 17:00:15 GMT\",\r\n - \ \"modifiedDate\": \"Mon, 18 Jul 2022 17:00:15 GMT\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000003\",\r\n - \ \"name\": \"containerapp-env000003\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n - \ \"location\": \"eastus2\"\r\n}" + string: '{"properties":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-08-15T22:38:42.2727529Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-08-16T20:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-08-15T22:38:42.2727529Z","modifiedDate":"2022-08-15T22:38:42.2727529Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003","name":"containerapp-env000003","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' + api-supported-versions: + - 2021-12-01-preview cache-control: - no-cache content-length: - - '1079' + - '852' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:16 GMT + - Mon, 15 Aug 2022 22:38:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003?api-version=2021-12-01-preview pragma: - no-cache request-context: @@ -104,7 +97,6 @@ interactions: - '1199' x-powered-by: - ASP.NET - - ASP.NET status: code: 201 message: Created @@ -122,36 +114,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003?api-version=2021-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003?api-version=2021-12-01-preview response: body: - string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"b243907a-acf8-4680-93bd-15c6e2541181\",\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\": - \"Mon, 18 Jul 2022 17:00: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\": - \"Tue, 19 Jul 2022 11:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n - \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Mon, 18 Jul 2022 17:00:15 GMT\",\r\n - \ \"modifiedDate\": \"Mon, 18 Jul 2022 17:00:17 GMT\"\r\n },\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/microsoft.operationalinsights/workspaces/containerapp-env000003\",\r\n - \ \"name\": \"containerapp-env000003\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n - \ \"location\": \"eastus2\"\r\n}" + string: '{"properties":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-08-15T22:38:42.2727529Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-08-16T20:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-08-15T22:38:42.2727529Z","modifiedDate":"2022-08-15T22:38:42.2727529Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003","name":"containerapp-env000003","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' + api-supported-versions: + - 2021-12-01-preview cache-control: - no-cache content-length: - - '1080' + - '853' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:46 GMT + - Mon, 15 Aug 2022 22:39:13 GMT + expires: + - '-1' pragma: - no-cache request-context: @@ -168,7 +151,6 @@ interactions: - nosniff x-powered-by: - ASP.NET - - ASP.NET status: code: 200 message: OK @@ -188,26 +170,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003/sharedKeys?api-version=2020-08-01 response: body: - string: "{\r\n \"primarySharedKey\": \"5+J7qUKOU+finsjp5pTNGtQXrcoFeC1SCNPKGavPHOYL/p2dwD4tH5sXNuwJe3xuf8V0WEVg0FtzYIUNK5/vfw==\",\r\n - \ \"secondarySharedKey\": \"239gL8oIU2cll0a8iNgAE+vneefGvuA9IMh0/uFvI7XXtC7JkpC6CT5/Im+uQBNWpmS42tgeYK0jaId+qs8tXA==\"\r\n}" + string: '{"primarySharedKey":"K2QCOF44j6/5V6uCYwLgLJ5v+bbm5C+2HT00FLlObA9XmoNGMelCNewbwgFUtKEHUMxjeqsXNneGRBbzzSP4rw==","secondarySharedKey":"hWJBk6ub5UhB+PKh4j4BXC0FpWLPW+6g2qWJnhiY3RwOsr3fKQG0MqHMJAnfQgAJZULPhMnTmUknsM5MseE4lg=="}' headers: access-control-allow-origin: - '*' + api-supported-versions: + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 cache-control: - no-cache - cachecontrol: - - no-cache content-length: - - '235' + - '223' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:47 GMT + - Mon, 15 Aug 2022 22:39:13 GMT expires: - '-1' pragma: @@ -222,15 +203,12 @@ interactions: - chunked vary: - Accept-Encoding - x-ams-apiversion: - - WebAPI1.0 x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET - - ASP.NET status: code: 200 message: OK @@ -248,12 +226,12 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) 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-07-18T16:59:53Z"},"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-08-15T22:38:26Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -262,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:48 GMT + - Mon, 15 Aug 2022 22:39:15 GMT expires: - '-1' pragma: @@ -290,7 +268,7 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -298,49 +276,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:50 GMT + - Mon, 15 Aug 2022 22:39:14 GMT expires: - '-1' pragma: @@ -368,7 +360,7 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -376,49 +368,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:50 GMT + - Mon, 15 Aug 2022 22:39:15 GMT expires: - '-1' pragma: @@ -436,7 +442,7 @@ interactions: body: '{"location": "eastus2", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "internalLoadBalancerEnabled": null, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId": - "b243907a-acf8-4680-93bd-15c6e2541181", "sharedKey": "5+J7qUKOU+finsjp5pTNGtQXrcoFeC1SCNPKGavPHOYL/p2dwD4tH5sXNuwJe3xuf8V0WEVg0FtzYIUNK5/vfw=="}}, + "28f41bc4-7922-4fcc-9497-6249213b318e", "sharedKey": "K2QCOF44j6/5V6uCYwLgLJ5v+bbm5C+2HT00FLlObA9XmoNGMelCNewbwgFUtKEHUMxjeqsXNneGRBbzzSP4rw=="}}, "zoneRedundant": false}}' headers: Accept: @@ -454,25 +460,25 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/38a3a7f1-0dd3-4b90-9b23-1ee4545ff607?api-version=2022-03-01&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/managedEnvironmentOperationStatuses/c83c9a80-698e-4642-879b-0151b4e21843?api-version=2022-03-01&azureAsyncOperation=true cache-control: - no-cache content-length: - - '801' + - '804' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:53 GMT + - Mon, 15 Aug 2022 22:39:19 GMT expires: - '-1' pragma: @@ -506,23 +512,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:55 GMT + - Mon, 15 Aug 2022 22:39:20 GMT expires: - '-1' pragma: @@ -556,23 +562,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:00:59 GMT + - Mon, 15 Aug 2022 22:39:23 GMT expires: - '-1' pragma: @@ -606,23 +612,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:01 GMT + - Mon, 15 Aug 2022 22:39:26 GMT expires: - '-1' pragma: @@ -656,23 +662,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:04 GMT + - Mon, 15 Aug 2022 22:39:29 GMT expires: - '-1' pragma: @@ -706,23 +712,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:08 GMT + - Mon, 15 Aug 2022 22:39:31 GMT expires: - '-1' pragma: @@ -756,23 +762,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:12 GMT + - Mon, 15 Aug 2022 22:39:35 GMT expires: - '-1' pragma: @@ -806,23 +812,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:14 GMT + - Mon, 15 Aug 2022 22:39:39 GMT expires: - '-1' pragma: @@ -856,23 +862,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:17 GMT + - Mon, 15 Aug 2022 22:39:42 GMT expires: - '-1' pragma: @@ -906,23 +912,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:21 GMT + - Mon, 15 Aug 2022 22:39:45 GMT expires: - '-1' pragma: @@ -956,23 +962,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:24 GMT + - Mon, 15 Aug 2022 22:39:49 GMT expires: - '-1' pragma: @@ -1006,23 +1012,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:27 GMT + - Mon, 15 Aug 2022 22:39:51 GMT expires: - '-1' pragma: @@ -1056,23 +1062,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:31 GMT + - Mon, 15 Aug 2022 22:39:54 GMT expires: - '-1' pragma: @@ -1106,23 +1112,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:35 GMT + - Mon, 15 Aug 2022 22:39:57 GMT expires: - '-1' pragma: @@ -1156,23 +1162,23 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Waiting","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '799' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:37 GMT + - Mon, 15 Aug 2022 22:40:00 GMT expires: - '-1' pragma: @@ -1206,23 +1212,73 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Succeeded","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Waiting","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '801' + - '802' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:41 GMT + - Mon, 15 Aug 2022 22:40: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.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Succeeded","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview + cache-control: + - no-cache + content-length: + - '804' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Aug 2022 22:40:06 GMT expires: - '-1' pragma: @@ -1256,7 +1312,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -1264,49 +1320,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:41 GMT + - Mon, 15 Aug 2022 22:40:07 GMT expires: - '-1' pragma: @@ -1334,23 +1404,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Succeeded","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Succeeded","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '801' + - '804' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:42 GMT + - Mon, 15 Aug 2022 22:40:08 GMT expires: - '-1' pragma: @@ -1384,12 +1454,12 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) 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-07-18T16:59:53Z"},"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-08-15T22:38:26Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1398,7 +1468,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:44 GMT + - Mon, 15 Aug 2022 22:40:08 GMT expires: - '-1' pragma: @@ -1431,26 +1501,26 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.13 - (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005?api-version=2022-02-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005","name":"containerapp000005","location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:01:46.8841146+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:01:46.8841146+00:00"},"properties":{"loginServer":"containerapp000005.azurecr.io","creationDate":"2022-07-18T17:01:46.8841146Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-07-18T17:01:57.8254045+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005","name":"containerapp000005","location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:11.3605917+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:11.3605917+00:00"},"properties":{"loginServer":"containerapp000005.azurecr.io","creationDate":"2022-08-15T22:40:11.3605917Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-08-15T22:40:12.6486654+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2022-08-15T22:40:12.6486654+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-08-01-preview + - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005/operationStatuses/registries-4ca00fb2-06bb-11ed-9b10-6c96cfda2705?api-version=2021-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005/operationStatuses/registries-37393fae-1ceb-11ed-83a9-6c96cfda2705?api-version=2022-02-01-preview cache-control: - no-cache content-length: - - '1218' + - '1387' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:01:57 GMT + - Mon, 15 Aug 2022 22:40:12 GMT expires: - '-1' pragma: @@ -1480,18 +1550,18 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.13 - (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005/operationStatuses/registries-4ca00fb2-06bb-11ed-9b10-6c96cfda2705?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005/operationStatuses/registries-37393fae-1ceb-11ed-83a9-6c96cfda2705?api-version=2022-02-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2021-08-01-preview + - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005/operationStatuses/registries-4ca00fb2-06bb-11ed-9b10-6c96cfda2705?api-version=2021-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005/operationStatuses/registries-37393fae-1ceb-11ed-83a9-6c96cfda2705?api-version=2022-02-01-preview cache-control: - no-cache content-length: @@ -1499,7 +1569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:07 GMT + - Mon, 15 Aug 2022 22:40:23 GMT expires: - '-1' pragma: @@ -1531,24 +1601,24 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.13 - (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005?api-version=2022-02-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005","name":"containerapp000005","location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:01:46.8841146+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:01:46.8841146+00:00"},"properties":{"loginServer":"containerapp000005.azurecr.io","creationDate":"2022-07-18T17:01:46.8841146Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-07-18T17:01:57.8254045+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005","name":"containerapp000005","location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:11.3605917+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:11.3605917+00:00"},"properties":{"loginServer":"containerapp000005.azurecr.io","creationDate":"2022-08-15T22:40:11.3605917Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-08-15T22:40:12.6486654+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2022-08-15T22:40:12.6486654+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-08-01-preview + - 2022-02-01-preview cache-control: - no-cache content-length: - - '1219' + - '1388' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:08 GMT + - Mon, 15 Aug 2022 22:40:23 GMT expires: - '-1' pragma: @@ -1580,24 +1650,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.13 - (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005?api-version=2022-02-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005","name":"containerapp000005","location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:01:46.8841146+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:01:46.8841146+00:00"},"properties":{"loginServer":"containerapp000005.azurecr.io","creationDate":"2022-07-18T17:01:46.8841146Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-07-18T17:01:57.8254045+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005","name":"containerapp000005","location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:11.3605917+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:11.3605917+00:00"},"properties":{"loginServer":"containerapp000005.azurecr.io","creationDate":"2022-08-15T22:40:11.3605917Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-08-15T22:40:12.6486654+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2022-08-15T22:40:12.6486654+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-08-01-preview + - 2022-02-01-preview cache-control: - no-cache content-length: - - '1219' + - '1388' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:10 GMT + - Mon, 15 Aug 2022 22:40:25 GMT expires: - '-1' pragma: @@ -1631,16 +1701,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.13 - (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005/listCredentials?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/containerapp000005/listCredentials?api-version=2022-02-01-preview response: body: - string: '{"username":"containerapp000005","passwords":[{"name":"password","value":"p58HrAR7WGInufTcIaqf45uK/cLk0k4L"},{"name":"password2","value":"Kq7aTgosXnTZUQaQPaSrhLkCS+yVp/4j"}]}' + string: '{"username":"containerapp000005","passwords":[{"name":"password","value":"uYXVLz77G03YX7y6rTNlu5PNmbLH9p=l"},{"name":"password2","value":"giFABPUOa/pUvWxslCGidAh8kFFMcnOO"}]}' headers: api-supported-versions: - - 2021-08-01-preview + - 2022-02-01-preview cache-control: - no-cache content-length: @@ -1648,7 +1718,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:11 GMT + - Mon, 15 Aug 2022 22:40:26 GMT expires: - '-1' pragma: @@ -1682,7 +1752,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -1690,49 +1760,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:12 GMT + - Mon, 15 Aug 2022 22:40:26 GMT expires: - '-1' pragma: @@ -1760,23 +1844,23 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:00:53.3239597","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:00:53.3239597"},"properties":{"provisioningState":"Succeeded","defaultDomain":"bluecliff-91749bca.eastus2.azurecontainerapps.io","staticIp":"20.242.61.4","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"b243907a-acf8-4680-93bd-15c6e2541181"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","name":"containerapp-e2e-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:39:17.679353","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:39:17.679353"},"properties":{"provisioningState":"Succeeded","defaultDomain":"thankfulsmoke-b215bd0c.eastus2.azurecontainerapps.io","staticIp":"20.10.48.143","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"28f41bc4-7922-4fcc-9497-6249213b318e"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '801' + - '804' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:13 GMT + - Mon, 15 Aug 2022 22:40:27 GMT expires: - '-1' pragma: @@ -1810,7 +1894,7 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -1818,49 +1902,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:13 GMT + - Mon, 15 Aug 2022 22:40:28 GMT expires: - '-1' pragma: @@ -1878,7 +1976,7 @@ interactions: body: '{"location": "eastus2", "identity": {"type": "None", "userAssignedIdentities": null}, "properties": {"managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002", "configuration": {"secrets": [{"name": "containerapp000005azurecrio-containerapp000005", - "value": "p58HrAR7WGInufTcIaqf45uK/cLk0k4L"}], "activeRevisionsMode": "single", + "value": "uYXVLz77G03YX7y6rTNlu5PNmbLH9p=l"}], "activeRevisionsMode": "single", "ingress": null, "dapr": null, "registries": [{"server": "containerapp000005.azurecr.io", "username": "containerapp000005", "passwordSecretRef": "containerapp000005azurecrio-containerapp000005"}]}, "template": {"revisionSuffix": null, "containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", @@ -1901,26 +1999,26 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:15.2657205Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:30.9210802Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/5b6dce2f-a5cb-48eb-a65f-8a2f62d41020?api-version=2022-03-01&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d843091c-c53b-4ed0-a515-610a49b3facb?api-version=2022-03-01&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1486' + - '1487' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:17 GMT + - Mon, 15 Aug 2022 22:40:33 GMT expires: - '-1' pragma: @@ -1954,24 +2052,24 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:15.2657205"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--7774rxj","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:30.9210802"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--b835oqa","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1515' + - '1516' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:19 GMT + - Mon, 15 Aug 2022 22:40:34 GMT expires: - '-1' pragma: @@ -2005,24 +2103,24 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:15.2657205"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--7774rxj","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:30.9210802"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--b835oqa","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1515' + - '1516' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:21 GMT + - Mon, 15 Aug 2022 22:40:37 GMT expires: - '-1' pragma: @@ -2056,24 +2154,24 @@ interactions: ParameterSetName: - -g -n --environment --registry-username --registry-server --registry-password User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:15.2657205"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--7774rxj","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:30.9210802"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--b835oqa","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1514' + - '1515' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:25 GMT + - Mon, 15 Aug 2022 22:40:40 GMT expires: - '-1' pragma: @@ -2107,7 +2205,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -2115,49 +2213,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:26 GMT + - Mon, 15 Aug 2022 22:40:41 GMT expires: - '-1' pragma: @@ -2185,7 +2297,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -2193,49 +2305,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:27 GMT + - Mon, 15 Aug 2022 22:40:41 GMT expires: - '-1' pragma: @@ -2263,24 +2389,24 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:15.2657205"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--7774rxj","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:30.9210802"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--b835oqa","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1514' + - '1515' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:27 GMT + - Mon, 15 Aug 2022 22:40:42 GMT expires: - '-1' pragma: @@ -2321,7 +2447,7 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: @@ -2329,17 +2455,17 @@ interactions: string: '' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 18 Jul 2022 17:02:29 GMT + - Mon, 15 Aug 2022 22:40:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationResults/88f42f9a-57e7-479c-a8d5-3f483d9d4f2f?api-version=2022-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationResults/04e32132-9bd5-4e8c-8b21-8f20381e5ecf?api-version=2022-03-01 pragma: - no-cache server: @@ -2369,24 +2495,24 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:29.0866084"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:43.1137486"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1575' + - '1576' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:30 GMT + - Mon, 15 Aug 2022 22:40:44 GMT expires: - '-1' pragma: @@ -2420,24 +2546,24 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:29.0866084"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:43.1137486"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1575' + - '1576' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:34 GMT + - Mon, 15 Aug 2022 22:40:46 GMT expires: - '-1' pragma: @@ -2471,24 +2597,24 @@ interactions: ParameterSetName: - -g -n --min-replicas --max-replicas --set-env-vars User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:29.0866084"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:43.1137486"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1574' + - '1575' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:37 GMT + - Mon, 15 Aug 2022 22:40:51 GMT expires: - '-1' pragma: @@ -2522,7 +2648,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -2530,49 +2656,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:38 GMT + - Mon, 15 Aug 2022 22:40:51 GMT expires: - '-1' pragma: @@ -2600,24 +2740,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:29.0866084"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:43.1137486"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1574' + - '1575' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:39 GMT + - Mon, 15 Aug 2022 22:40:52 GMT expires: - '-1' pragma: @@ -2651,7 +2791,7 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -2659,49 +2799,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:40 GMT + - Mon, 15 Aug 2022 22:40:54 GMT expires: - '-1' pragma: @@ -2729,24 +2883,24 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:29.0866084"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:43.1137486"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1574' + - '1575' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:41 GMT + - Mon, 15 Aug 2022 22:40:55 GMT expires: - '-1' pragma: @@ -2782,15 +2936,15 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006/listSecrets?api-version=2022-03-01 response: body: - string: '{"value":[{"name":"containerapp000005azurecrio-containerapp000005","value":"p58HrAR7WGInufTcIaqf45uK/cLk0k4L"}]}' + string: '{"value":[{"name":"containerapp000005azurecrio-containerapp000005","value":"uYXVLz77G03YX7y6rTNlu5PNmbLH9p=l"}]}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: @@ -2798,7 +2952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:42 GMT + - Mon, 15 Aug 2022 22:40:56 GMT expires: - '-1' pragma: @@ -2824,14 +2978,14 @@ interactions: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006", "name": "containerapp-e2e000006", "type": "Microsoft.App/containerApps", "location": "East US 2", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType": - "User", "createdAt": "2022-07-18T17:02:15.2657205", "lastModifiedBy": "silasstrawn@microsoft.com", - "lastModifiedByType": "User", "lastModifiedAt": "2022-07-18T17:02:29.0866084"}, + "User", "createdAt": "2022-08-15T22:40:30.9210802", "lastModifiedBy": "silasstrawn@microsoft.com", + "lastModifiedByType": "User", "lastModifiedAt": "2022-08-15T22:40:43.1137486"}, "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002", - "outboundIpAddresses": ["20.22.84.128", "20.22.84.82", "20.22.84.119"], "latestRevisionName": - "containerapp-e2e000006--s5z4cps", "latestRevisionFqdn": "", "customDomainVerificationId": + "outboundIpAddresses": ["20.96.71.248", "20.96.71.189", "20.96.71.243"], "latestRevisionName": + "containerapp-e2e000006--w2h1tpl", "latestRevisionFqdn": "", "customDomainVerificationId": "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7", "configuration": {"secrets": [{"name": "containerapp000005azurecrio-containerapp000005", "value": - "p58HrAR7WGInufTcIaqf45uK/cLk0k4L"}, {"name": "newsecret", "value": "test"}], + "uYXVLz77G03YX7y6rTNlu5PNmbLH9p=l"}, {"name": "newsecret", "value": "test"}], "activeRevisionsMode": "Single", "registries": [{"server": "containerapp000005.azurecr.io", "username": "containerapp000005", "passwordSecretRef": "containerapp000005azurecrio-containerapp000005", "identity": ""}]}, "template": {"revisionSuffix": "", "containers": [{"image": @@ -2849,24 +3003,24 @@ interactions: Connection: - keep-alive Content-Length: - - '1737' + - '1738' Content-Type: - application/json ParameterSetName: - -g -n --secrets User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:44.2218837Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:57.881704Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/7e262356-72d5-4085-8e72-98cd64b4373e?api-version=2022-03-01&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/98b2c957-5266-4fc5-9aad-13e7e881ca0e?api-version=2022-03-01&azureAsyncOperation=true cache-control: - no-cache content-length: @@ -2874,7 +3028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:44 GMT + - Mon, 15 Aug 2022 22:40:58 GMT expires: - '-1' pragma: @@ -2908,118 +3062,16 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:44.2218837"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 - cache-control: - - no-cache - content-length: - - '1596' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jul 2022 17:02:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp secret set - Connection: - - keep-alive - ParameterSetName: - - -g -n --secrets - User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:44.2218837"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 - cache-control: - - no-cache - content-length: - - '1596' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jul 2022 17:02: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 secret set - Connection: - - keep-alive - ParameterSetName: - - -g -n --secrets - User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:44.2218837"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:57.881704"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: @@ -3027,7 +3079,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:52 GMT + - Mon, 15 Aug 2022 22:40:59 GMT expires: - '-1' pragma: @@ -3061,16 +3113,16 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:44.2218837"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:57.881704"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: @@ -3078,7 +3130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:54 GMT + - Mon, 15 Aug 2022 22:41:03 GMT expires: - '-1' pragma: @@ -3112,16 +3164,16 @@ interactions: ParameterSetName: - -g -n --secrets User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:44.2218837"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:57.881704"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: @@ -3129,7 +3181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:57 GMT + - Mon, 15 Aug 2022 22:41:05 GMT expires: - '-1' pragma: @@ -3163,7 +3215,7 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.4-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: @@ -3171,49 +3223,63 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["North + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South"],"apiVersions":["2022-03-01","2022-01-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US","South Central US","Korea Central","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '4343' + - '5927' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:02:58 GMT + - Mon, 15 Aug 2022 22:41:06 GMT expires: - '-1' pragma: @@ -3241,16 +3307,16 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006","name":"containerapp-e2e000006","type":"Microsoft.App/containerApps","location":"East - US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-07-18T17:02:15.2657205","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-07-18T17:02:44.2218837"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.22.84.128","20.22.84.82","20.22.84.119"],"latestRevisionName":"containerapp-e2e000006--s5z4cps","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' + US 2","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:40:30.9210802","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:40:57.881704"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002","outboundIpAddresses":["20.96.71.248","20.96.71.189","20.96.71.243"],"latestRevisionName":"containerapp-e2e000006--w2h1tpl","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"containerapp000005azurecrio-containerapp000005"},{"name":"newsecret"}],"activeRevisionsMode":"Single","registries":[{"server":"containerapp000005.azurecr.io","username":"containerapp000005","passwordSecretRef":"containerapp000005azurecrio-containerapp000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"containerapp-e2e000006","env":[{"name":"testenv","value":"testing"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":0,"maxReplicas":1}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: @@ -3258,7 +3324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:03:00 GMT + - Mon, 15 Aug 2022 22:41:07 GMT expires: - '-1' pragma: @@ -3294,15 +3360,15 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006/listSecrets?api-version=2022-03-01 response: body: - string: '{"value":[{"name":"containerapp000005azurecrio-containerapp000005","value":"p58HrAR7WGInufTcIaqf45uK/cLk0k4L"},{"name":"newsecret","value":"test"}]}' + string: '{"value":[{"name":"containerapp000005azurecrio-containerapp000005","value":"uYXVLz77G03YX7y6rTNlu5PNmbLH9p=l"},{"name":"newsecret","value":"test"}]}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: @@ -3310,7 +3376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:03:01 GMT + - Mon, 15 Aug 2022 22:41:09 GMT expires: - '-1' pragma: @@ -3336,11 +3402,11 @@ interactions: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/containerapp-e2e000006", "name": "containerapp-e2e000006", "type": "Microsoft.App/containerApps", "location": "East US 2", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType": - "User", "createdAt": "2022-07-18T17:02:15.2657205", "lastModifiedBy": "silasstrawn@microsoft.com", - "lastModifiedByType": "User", "lastModifiedAt": "2022-07-18T17:02:44.2218837"}, + "User", "createdAt": "2022-08-15T22:40:30.9210802", "lastModifiedBy": "silasstrawn@microsoft.com", + "lastModifiedByType": "User", "lastModifiedAt": "2022-08-15T22:40:57.881704"}, "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-e2e-env000002", - "outboundIpAddresses": ["20.22.84.128", "20.22.84.82", "20.22.84.119"], "latestRevisionName": - "containerapp-e2e000006--s5z4cps", "latestRevisionFqdn": "", "customDomainVerificationId": + "outboundIpAddresses": ["20.96.71.248", "20.96.71.189", "20.96.71.243"], "latestRevisionName": + "containerapp-e2e000006--w2h1tpl", "latestRevisionFqdn": "", "customDomainVerificationId": "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7", "configuration": {"secrets": [{"name": "newsecret", "value": "test"}], "activeRevisionsMode": "Single", "registries": [{"server": "containerapp000005.azurecr.io", "username": @@ -3366,7 +3432,7 @@ interactions: ParameterSetName: - -g -n --secret-names User-Agent: - - python/3.8.13 (macOS-12.4-x86_64-i386-64bit) AZURECLI/2.38.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/containerapp-e2e000006?api-version=2022-03-01 response: @@ -3376,7 +3442,7 @@ interactions: ''containerapp000005.azurecr.io'' not found."}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: @@ -3384,7 +3450,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jul 2022 17:03:03 GMT + - Mon, 15 Aug 2022 22:41:10 GMT expires: - '-1' pragma: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_registry_msi.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_registry_msi.yaml index 9ad77af5ebb..626a394af3d 100644 --- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_registry_msi.yaml +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_registry_msi.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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) 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":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-16T23:50:00Z"},"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-08-15T22:50:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:50:03 GMT + - Mon, 15 Aug 2022 22:50:57 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ 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.39.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/logs000003?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-16T23:50:10.0050018Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-17T03:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-16T23:50:10.0050018Z","modifiedDate":"2022-06-16T23:50:10.0050018Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/logs000003","name":"logs000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-08-15T22:51:04.3063602Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-08-16T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-08-15T22:51:04.3063602Z","modifiedDate":"2022-08-15T22:51:04.3063602Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/logs000003","name":"logs000003","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -78,7 +78,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:50:13 GMT + - Mon, 15 Aug 2022 22:51:06 GMT expires: - '-1' location: @@ -114,12 +114,12 @@ 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.39.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/logs000003?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-16T23:50:10.0050018Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-17T03:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-16T23:50:10.0050018Z","modifiedDate":"2022-06-16T23:50:10.0050018Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/logs000003","name":"logs000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-08-15T22:51:04.3063602Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-08-16T11:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-08-15T22:51:04.3063602Z","modifiedDate":"2022-08-15T22:51:04.3063602Z"},"location":"northeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/logs000003","name":"logs000003","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -132,7 +132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:50:44 GMT + - Mon, 15 Aug 2022 22:51:36 GMT expires: - '-1' pragma: @@ -170,17 +170,17 @@ 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.39.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/logs000003/sharedKeys?api-version=2020-08-01 response: body: - string: '{"primarySharedKey":"hrdp9gU3pAFvR7Est0bACxABWuHt0Ow8dXGy2A3UGh/tuiRiHh3PPJGoIE81Nuzp4I7Csrz+7J0wh/RySLNO+Q==","secondarySharedKey":"n5mQ60rsKissqM2WFjnksDS5iy4RxqWhazrr7YHZ8zWrMSBeZYclaplFSxammk5mD1gllOAccb6zDYkxH4f6HQ=="}' + string: '{"primarySharedKey":"SsClUs19y4Ad2fpktxS8MeM5xVS5DpKc9NQ8tEEIn1bi9WFe7JuNj0HUsNZkOW2IWIEDr0kHvmvF940XrHq43Q==","secondarySharedKey":"m52tYRMf77pC/DKBzX6us2syqlIyleJKsnq66unG3AYFJeIIqREfShQKBKkh9ViwxOFQ+izEiMPpnt4FmWuENA=="}' headers: access-control-allow-origin: - '*' api-supported-versions: - - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01 + - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01 cache-control: - no-cache content-length: @@ -188,7 +188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:50:46 GMT + - Mon, 15 Aug 2022 22:51:36 GMT expires: - '-1' pragma: @@ -226,12 +226,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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) 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":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-16T23:50:00Z"},"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-08-15T22:50:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -240,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:50:47 GMT + - Mon, 15 Aug 2022 22:51:38 GMT expires: - '-1' pragma: @@ -268,49 +268,71 @@ 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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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, + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '3551' + - '5927' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:50:48 GMT + - Mon, 15 Aug 2022 22:51:37 GMT expires: - '-1' pragma: @@ -338,49 +360,71 @@ 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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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, + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '3551' + - '5927' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:50:47 GMT + - Mon, 15 Aug 2022 22:51:38 GMT expires: - '-1' pragma: @@ -398,7 +442,7 @@ interactions: body: '{"location": "northeurope", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "internalLoadBalancerEnabled": null, "appLogsConfiguration": {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId": - "af6be2cb-1637-490d-bd2b-4a36cfe14df7", "sharedKey": "hrdp9gU3pAFvR7Est0bACxABWuHt0Ow8dXGy2A3UGh/tuiRiHh3PPJGoIE81Nuzp4I7Csrz+7J0wh/RySLNO+Q=="}}, + "4cbb0a7e-7826-4177-a6c2-2450c30a8d5f", "sharedKey": "SsClUs19y4Ad2fpktxS8MeM5xVS5DpKc9NQ8tEEIn1bi9WFe7JuNj0HUsNZkOW2IWIEDr0kHvmvF940XrHq43Q=="}}, "zoneRedundant": false}}' headers: Accept: @@ -416,25 +460,25 @@ 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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/f12c4922-282b-41de-8367-7e600a3fe924?api-version=2022-03-01&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/managedEnvironmentOperationStatuses/7f4433eb-1e15-451a-9b64-e840f06b7264?api-version=2022-03-01&azureAsyncOperation=true cache-control: - no-cache content-length: - - '776' + - '775' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:50:56 GMT + - Mon, 15 Aug 2022 22:51:45 GMT expires: - '-1' pragma: @@ -468,23 +512,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:50:57 GMT + - Mon, 15 Aug 2022 22:51:46 GMT expires: - '-1' pragma: @@ -518,23 +562,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:02 GMT + - Mon, 15 Aug 2022 22:51:50 GMT expires: - '-1' pragma: @@ -568,23 +612,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:05 GMT + - Mon, 15 Aug 2022 22:51:55 GMT expires: - '-1' pragma: @@ -618,23 +662,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:10 GMT + - Mon, 15 Aug 2022 22:51:59 GMT expires: - '-1' pragma: @@ -668,23 +712,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:14 GMT + - Mon, 15 Aug 2022 22:52:03 GMT expires: - '-1' pragma: @@ -718,23 +762,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:18 GMT + - Mon, 15 Aug 2022 22:52:08 GMT expires: - '-1' pragma: @@ -768,23 +812,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:23 GMT + - Mon, 15 Aug 2022 22:52:13 GMT expires: - '-1' pragma: @@ -818,23 +862,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:28 GMT + - Mon, 15 Aug 2022 22:52:16 GMT expires: - '-1' pragma: @@ -868,23 +912,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:32 GMT + - Mon, 15 Aug 2022 22:52:21 GMT expires: - '-1' pragma: @@ -918,23 +962,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:37 GMT + - Mon, 15 Aug 2022 22:52:26 GMT expires: - '-1' pragma: @@ -968,23 +1012,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Waiting","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Waiting","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '774' + - '773' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:42 GMT + - Mon, 15 Aug 2022 22:52:30 GMT expires: - '-1' pragma: @@ -1018,23 +1062,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 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Succeeded","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Succeeded","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '776' + - '775' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:46 GMT + - Mon, 15 Aug 2022 22:52:35 GMT expires: - '-1' pragma: @@ -1068,49 +1112,71 @@ 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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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, + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '3551' + - '5927' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:46 GMT + - Mon, 15 Aug 2022 22:52:36 GMT expires: - '-1' pragma: @@ -1138,23 +1204,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Succeeded","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Succeeded","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '776' + - '775' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:47 GMT + - Mon, 15 Aug 2022 22:52:38 GMT expires: - '-1' pragma: @@ -1188,49 +1254,71 @@ interactions: ParameterSetName: - -g -n --environment --min-replicas --ingress --target-port 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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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, + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '3551' + - '5927' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:48 GMT + - Mon, 15 Aug 2022 22:52:38 GMT expires: - '-1' pragma: @@ -1258,23 +1346,23 @@ interactions: ParameterSetName: - -g -n --environment --min-replicas --ingress --target-port User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:50:54.5156228","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:50:54.5156228"},"properties":{"provisioningState":"Succeeded","defaultDomain":"graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","staticIp":"20.67.144.22","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"af6be2cb-1637-490d-bd2b-4a36cfe14df7"}},"zoneRedundant":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"northeurope","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:51:43.9740551","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:51:43.9740551"},"properties":{"provisioningState":"Succeeded","defaultDomain":"icytree-bb4794f1.northeurope.azurecontainerapps.io","staticIp":"20.105.68.110","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4cbb0a7e-7826-4177-a6c2-2450c30a8d5f"}},"zoneRedundant":false}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '776' + - '775' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:50 GMT + - Mon, 15 Aug 2022 22:52:40 GMT expires: - '-1' pragma: @@ -1308,49 +1396,71 @@ interactions: ParameterSetName: - -g -n --environment --min-replicas --ingress --target-port 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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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, + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '3551' + - '5927' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:49 GMT + - Mon, 15 Aug 2022 22:52:39 GMT expires: - '-1' pragma: @@ -1390,26 +1500,26 @@ interactions: ParameterSetName: - -g -n --environment --min-replicas --ingress --target-port User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:51:56.4359694Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.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":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/956de59e-9eef-47c3-84be-f4c8ad13f386?api-version=2022-03-01&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/866d5ef5-d105-4910-aa95-7cdd847576fe?api-version=2022-03-01&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1372' + - '1413' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:51:59 GMT + - Mon, 15 Aug 2022 22:52:49 GMT expires: - '-1' pragma: @@ -1443,24 +1553,24 @@ interactions: ParameterSetName: - -g -n --environment --min-replicas --ingress --target-port User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:51:56.4359694"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.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":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1459' + - '1498' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:01 GMT + - Mon, 15 Aug 2022 22:52:52 GMT expires: - '-1' pragma: @@ -1494,24 +1604,381 @@ interactions: ParameterSetName: - -g -n --environment --min-replicas --ingress --target-port User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:51:56.4359694"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.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":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1458' + - '1498' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:05 GMT + - Mon, 15 Aug 2022 22:52: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --min-replicas --ingress --target-port + User-Agent: + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview + cache-control: + - no-cache + content-length: + - '1498' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Aug 2022 22:53: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 --min-replicas --ingress --target-port + User-Agent: + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview + cache-control: + - no-cache + content-length: + - '1498' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Aug 2022 22:53: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --min-replicas --ingress --target-port + User-Agent: + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview + cache-control: + - no-cache + content-length: + - '1498' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Aug 2022 22:53:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --min-replicas --ingress --target-port + User-Agent: + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview + cache-control: + - no-cache + content-length: + - '1498' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Aug 2022 22:53:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --min-replicas --ingress --target-port + User-Agent: + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview + cache-control: + - no-cache + content-length: + - '1498' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Aug 2022 22:53:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --min-replicas --ingress --target-port + User-Agent: + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview + cache-control: + - no-cache + content-length: + - '1498' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Aug 2022 22:53: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --environment --min-replicas --ingress --target-port + User-Agent: + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview + cache-control: + - no-cache + content-length: + - '1497' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 15 Aug 2022 22:53:29 GMT expires: - '-1' pragma: @@ -1545,12 +2012,12 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled 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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) 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":"northeurope","tags":{"product":"azurecli","cause":"automation","date":"2022-06-16T23:50:00Z"},"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-08-15T22:50:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1559,7 +2026,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:04 GMT + - Mon, 15 Aug 2022 22:53:30 GMT expires: - '-1' pragma: @@ -1592,26 +2059,26 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005?api-version=2022-02-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005","name":"acr000005","location":"northeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:52:11.9664578+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:11.9664578+00:00"},"properties":{"loginServer":"acr000005.azurecr.io","creationDate":"2022-06-16T23:52:11.9664578Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-06-16T23:52:13.8446995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005","name":"acr000005","location":"northeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:53:35.8258287+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:35.8258287+00:00"},"properties":{"loginServer":"acr000005.azurecr.io","creationDate":"2022-08-15T22:53:35.8258287Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-08-15T22:53:37.757074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2022-08-15T22:53:37.757074+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-08-01-preview + - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005/operationStatuses/registries-536530e8-edcf-11ec-9859-6c96cfda2705?api-version=2021-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005/operationStatuses/registries-14fce25e-1ced-11ed-a7f7-6c96cfda2705?api-version=2022-02-01-preview cache-control: - no-cache content-length: - - '1195' + - '1362' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:14 GMT + - Mon, 15 Aug 2022 22:53:37 GMT expires: - '-1' pragma: @@ -1641,18 +2108,18 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005/operationStatuses/registries-536530e8-edcf-11ec-9859-6c96cfda2705?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005/operationStatuses/registries-14fce25e-1ced-11ed-a7f7-6c96cfda2705?api-version=2022-02-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2021-08-01-preview + - 2022-02-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005/operationStatuses/registries-536530e8-edcf-11ec-9859-6c96cfda2705?api-version=2021-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005/operationStatuses/registries-14fce25e-1ced-11ed-a7f7-6c96cfda2705?api-version=2022-02-01-preview cache-control: - no-cache content-length: @@ -1660,7 +2127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:24 GMT + - Mon, 15 Aug 2022 22:53:49 GMT expires: - '-1' pragma: @@ -1692,24 +2159,24 @@ interactions: ParameterSetName: - -g -n --sku --admin-enabled User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005?api-version=2022-02-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005","name":"acr000005","location":"northeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:52:11.9664578+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:11.9664578+00:00"},"properties":{"loginServer":"acr000005.azurecr.io","creationDate":"2022-06-16T23:52:11.9664578Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-06-16T23:52:13.8446995+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005","name":"acr000005","location":"northeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:53:35.8258287+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:35.8258287+00:00"},"properties":{"loginServer":"acr000005.azurecr.io","creationDate":"2022-08-15T22:53:35.8258287Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-08-15T22:53:37.757074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2022-08-15T22:53:37.757074+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-08-01-preview + - 2022-02-01-preview cache-control: - no-cache content-length: - - '1196' + - '1363' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:24 GMT + - Mon, 15 Aug 2022 22:53:49 GMT expires: - '-1' pragma: @@ -1741,49 +2208,71 @@ interactions: ParameterSetName: - --server -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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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, + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '3551' + - '5927' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:25 GMT + - Mon, 15 Aug 2022 22:53:50 GMT expires: - '-1' pragma: @@ -1811,24 +2300,24 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:51:56.4359694"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.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":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:52:47.0625187"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false}},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1458' + - '1497' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:29 GMT + - Mon, 15 Aug 2022 22:53:53 GMT expires: - '-1' pragma: @@ -1862,21 +2351,21 @@ interactions: ParameterSetName: - --server -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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_group/providers/Microsoft.ContainerRegistry/registries/sstrawn","name":"sstrawn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","identity":{"principalId":"1028f703-a01c-4e12-950f-48cd91546125","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-09-22T22:03:42.8389144Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-02T23:24:40.1837616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-demo/providers/Microsoft.ContainerRegistry/registries/cac27b381be5acr","name":"cac27b381be5acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-27T23:04:14.616133Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-27T23:04:14.616133Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demo/providers/Microsoft.ContainerRegistry/registries/caa3f0888d80acr","name":"caa3f0888d80acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-27T23:26:04.3914073Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-27T23:26:04.3914073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demo/providers/Microsoft.ContainerRegistry/registries/ca23814953e5acr","name":"ca23814953e5acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-27T23:29:53.7442354Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-27T23:29:53.7442354Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/silasstrawn_rg_2383/providers/Microsoft.ContainerRegistry/registries/caeastus2envacr","name":"caeastus2envacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-28T16:22:24.9172522Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-28T16:22:24.9172522Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/silasstrawn_rg_1695/providers/Microsoft.ContainerRegistry/registries/ca14b59080fcacr","name":"ca14b59080fcacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-28T19:23:15.370456Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-28T19:23:15.370456Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/caeuap118944acr","name":"caeuap118944acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T00:28:29.0854527Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T00:28:29.0854527Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/caeuap123456acr","name":"caeuap123456acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T00:29:40.1662942Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T00:29:40.1662942Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/caeuap716260acr","name":"caeuap716260acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T00:34:06.743482Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T00:34:06.743482Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/ca6649860915acr","name":"ca6649860915acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T00:42:10.6755073Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T00:42:10.6755073Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/ca7171630273acr","name":"ca7171630273acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T00:42:42.5138005Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T00:42:42.5138005Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/caeuap818336acr","name":"caeuap818336acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T00:46:15.1159592Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T00:46:15.1159592Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/caeuap474445acr","name":"caeuap474445acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T00:55:35.2925278Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T00:55:35.2925278Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/scsscar","name":"scsscar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T16:22:33.9053983Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T16:30:45.7801524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/cagh563669744341acr","name":"cagh563669744341acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T16:48:58.3375519Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T16:48:58.3375519Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/castage62404acr","name":"castage62404acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:27:31.2200745Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:27:31.2200745Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/cauapa9e5460acr","name":"cauapa9e5460acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T17:31:15.849617Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T17:31:15.849617Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/caeaf455b151acr","name":"caeaf455b151acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-28T23:16:13.2013519Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-28T23:16:13.2013519Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/cae08cc6369dacr","name":"cae08cc6369dacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-28T23:16:52.810344Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-28T23:16:52.810344Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/kjladsfkljdasjkf","name":"kjladsfkljdasjkf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-02T19:53:09.2708037Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-02T19:53:09.2708037Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sca/providers/Microsoft.ContainerRegistry/registries/ca2312c761bcacr","name":"ca2312c761bcacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-06T17:54:54.728464Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-06T17:54:54.728464Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/catest/providers/Microsoft.ContainerRegistry/registries/caf966e443a2acr","name":"caf966e443a2acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-02T19:25:01.1414612Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-02T19:25:01.1414612Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/cascscr0acd6acr","name":"cascscr0acd6acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T02:29:02.7744209Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T02:29:02.7744209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/cacae407bdccacr","name":"cacae407bdccacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-29T17:34:53.4366822Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-29T17:34:53.4366822Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/ca9bdb5876bcacr","name":"ca9bdb5876bcacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-03T18:46:12.1365564Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-03T18:46:12.1365564Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/caaa065f13cbacr","name":"caaa065f13cbacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T23:26:01.3107281Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T23:26:01.3107281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps_new/providers/Microsoft.ContainerRegistry/registries/ca5d25a927b5acr","name":"ca5d25a927b5acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"northeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-22T22:52:26.6523381Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-22T22:52:26.6523381Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/ca8a296b2511acr","name":"ca8a296b2511acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-17T17:49:59.9020183Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-17T17:49:59.9020183Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005","name":"acr000005","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"northeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:52:11.9664578Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:11.9664578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/caf0b1e7fc47acr","name":"caf0b1e7fc47acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-03T14:53:15.7379815Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-03T14:53:15.7379815Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/ca9ab1f9a758acr","name":"ca9ab1f9a758acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-10T16:37:39.7457032Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-10T16:37:39.7457032Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_group/providers/Microsoft.ContainerRegistry/registries/sstrawn","name":"sstrawn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","identity":{"principalId":"1028f703-a01c-4e12-950f-48cd91546125","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-09-22T22:03:42.8389144Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-02T23:24:40.1837616Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/cascscr0acd6acr","name":"cascscr0acd6acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-27T02:29:02.7744209Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-27T02:29:02.7744209Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/cacae407bdccacr","name":"cacae407bdccacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-04-29T17:34:53.4366822Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-29T17:34:53.4366822Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/ca9bdb5876bcacr","name":"ca9bdb5876bcacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-03T18:46:12.1365564Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-03T18:46:12.1365564Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/caaa065f13cbacr","name":"caaa065f13cbacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-12T23:26:01.3107281Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T23:26:01.3107281Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/ca8a296b2511acr","name":"ca8a296b2511acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-05-17T17:49:59.9020183Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-17T17:49:59.9020183Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/caf0b1e7fc47acr","name":"caf0b1e7fc47acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-03T14:53:15.7379815Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-03T14:53:15.7379815Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/ca9ab1f9a758acr","name":"ca9ab1f9a758acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-10T16:37:39.7457032Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-10T16:37:39.7457032Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005","name":"acr000005","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"northeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:53:35.8258287Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:35.8258287Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/container_apps/providers/Microsoft.ContainerRegistry/registries/kjladsfksjkf","name":"kjladsfksjkf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T20:07:30.9256708Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T20:07:30.9256708Z"}}]}' headers: cache-control: - no-cache content-length: - - '16672' + - '5529' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:29 GMT + - Mon, 15 Aug 2022 22:53:53 GMT expires: - '-1' pragma: @@ -1904,24 +2393,24 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005?api-version=2021-09-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005","name":"acr000005","location":"northeurope","tags":{},"properties":{"loginServer":"acr000005.azurecr.io","creationDate":"2022-06-16T23:52:11.9664578Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-06-16T23:52:13.8446995+00:00","status":"disabled"}}}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005","name":"acr000005","location":"northeurope","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:53:35.8258287+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:35.8258287+00:00"},"properties":{"loginServer":"acr000005.azurecr.io","creationDate":"2022-08-15T22:53:35.8258287Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2022-08-15T22:53:37.757074+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled"}}' headers: api-supported-versions: - - '2019-05-01' + - '2021-09-01' cache-control: - no-cache content-length: - - '654' + - '1166' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:31 GMT + - Mon, 15 Aug 2022 22:53:57 GMT expires: - '-1' pragma: @@ -1955,16 +2444,16 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.16-x86_64-i386-64bit) + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-containerregistry/10.0.0 Python/3.8.13 + (macOS-12.5-x86_64-i386-64bit) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005/listCredentials?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/acr000005/listCredentials?api-version=2021-09-01 response: body: - string: '{"username":"acr000005","passwords":[{"name":"password","value":"Um62toiPubWGt7W4Uk44KvIAllr+HHNV"},{"name":"password2","value":"YUGxdGO0+zsgyiDtt8w2CXPdPU2C5uAm"}]}' + string: '{"username":"acr000005","passwords":[{"name":"password","value":"ocRHyEf=4W9NyRgfmEsZA0koVhgzbIpL"},{"name":"password2","value":"TnCFcWN4HfmEtG/aYHEtFB4Ykv0CeVNr"}]}' headers: api-supported-versions: - - '2019-05-01' + - '2021-09-01' cache-control: - no-cache content-length: @@ -1972,7 +2461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:32 GMT + - Mon, 15 Aug 2022 22:53:58 GMT expires: - '-1' pragma: @@ -1993,23 +2482,25 @@ interactions: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004", + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004", "name": "app000004", "type": "Microsoft.App/containerApps", "location": "North Europe", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType": - "User", "createdAt": "2022-06-16T23:51:56.4359694", "lastModifiedBy": "silasstrawn@microsoft.com", - "lastModifiedByType": "User", "lastModifiedAt": "2022-06-16T23:51:56.4359694"}, + "User", "createdAt": "2022-08-15T22:52:47.0625187", "lastModifiedBy": "silasstrawn@microsoft.com", + "lastModifiedByType": "User", "lastModifiedAt": "2022-08-15T22:52:47.0625187"}, "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", - "outboundIpAddresses": ["20.223.35.227", "20.223.37.134", "20.223.38.5"], "latestRevisionName": - "app000004--qggcsjb", "latestRevisionFqdn": "app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io", + "outboundIpAddresses": ["20.105.67.203", "20.105.67.185", "20.105.68.59"], "latestRevisionName": + "app000004--mpuqg8n", "latestRevisionFqdn": "app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io", "customDomainVerificationId": "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7", - "configuration": {"activeRevisionsMode": "Single", "ingress": {"fqdn": "app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io", + "configuration": {"activeRevisionsMode": "Single", "ingress": {"fqdn": "app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io", "external": true, "targetPort": 80, "transport": "Auto", "traffic": [{"weight": 100, "latestRevision": true}], "allowInsecure": false}, "secrets": [{"name": - "acr000005azurecrio-acr000005", "value": "Um62toiPubWGt7W4Uk44KvIAllr+HHNV"}], + "acr000005azurecrio-acr000005", "value": "ocRHyEf=4W9NyRgfmEsZA0koVhgzbIpL"}], "registries": [{"server": "acr000005.azurecr.io", "username": "acr000005", "passwordSecretRef": - "acr000005azurecrio-acr000005"}]}, "template": {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", - "name": "app000004", "resources": {"cpu": 0.5, "memory": "1Gi"}}], "scale": - {"minReplicas": 1, "maxReplicas": 10}}}, "identity": {"type": "None"}}' + "acr000005azurecrio-acr000005"}]}, "template": {"revisionSuffix": "", "containers": + [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", "name": + "app000004", "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage": + ""}}], "scale": {"minReplicas": 1, "maxReplicas": 10}}}, "identity": {"type": + "None"}}' headers: Accept: - '*/*' @@ -2020,32 +2511,32 @@ interactions: Connection: - keep-alive Content-Length: - - '1761' + - '1804' Content-Type: - application/json ParameterSetName: - --server -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:35.0848142Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:59.9627375Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/0a2fae64-90cb-4d16-8236-54d145c6908a?api-version=2022-03-01&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/7e144b3b-9289-43cd-ab0d-e88ca9000212?api-version=2022-03-01&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1635' + - '1688' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:38 GMT + - Mon, 15 Aug 2022 22:54:02 GMT expires: - '-1' pragma: @@ -2079,24 +2570,24 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:35.0848142"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:59.9627375"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1634' + - '1687' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:40 GMT + - Mon, 15 Aug 2022 22:54:03 GMT expires: - '-1' pragma: @@ -2130,24 +2621,24 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:35.0848142"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:59.9627375"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1634' + - '1687' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:44 GMT + - Mon, 15 Aug 2022 22:54:08 GMT expires: - '-1' pragma: @@ -2181,24 +2672,24 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:35.0848142"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:59.9627375"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1634' + - '1687' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:48 GMT + - Mon, 15 Aug 2022 22:54:11 GMT expires: - '-1' pragma: @@ -2232,24 +2723,24 @@ interactions: ParameterSetName: - --server -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:35.0848142"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:59.9627375"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1633' + - '1687' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:51 GMT + - Mon, 15 Aug 2022 22:54:15 GMT expires: - '-1' pragma: @@ -2273,69 +2764,50 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - containerapp show + - containerapp registry set Connection: - keep-alive ParameterSetName: - - -g -n + - --server -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) + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 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/app000004?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/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:59.9627375"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '3551' + - '1687' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:53 GMT + - Mon, 15 Aug 2022 22:54:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -2347,30 +2819,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - containerapp show + - containerapp registry set Connection: - keep-alive ParameterSetName: - - -g -n + - --server -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:35.0848142"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:59.9627375"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1633' + - '1686' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:55 GMT + - Mon, 15 Aug 2022 22:54:24 GMT expires: - '-1' pragma: @@ -2398,55 +2870,77 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - containerapp registry set + - containerapp show Connection: - keep-alive ParameterSetName: - - --server -g -n --identity + - -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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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, + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '3551' + - '5927' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:56 GMT + - Mon, 15 Aug 2022 22:54:25 GMT expires: - '-1' pragma: @@ -2468,30 +2962,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - containerapp registry set + - containerapp show Connection: - keep-alive ParameterSetName: - - --server -g -n --identity + - -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:52:35.0848142"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:59.9627375"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"None"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1633' + - '1686' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:52:57 GMT + - Mon, 15 Aug 2022 22:54:26 GMT expires: - '-1' pragma: @@ -2515,75 +3009,96 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - containerapp registry set Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004/listSecrets?api-version=2022-03-01 + - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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: '{"value":[{"name":"acr000005azurecrio-acr000005","value":"Um62toiPubWGt7W4Uk44KvIAllr+HHNV"}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-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: - - '94' + - '5927' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:53:00 GMT + - Mon, 15 Aug 2022 22:54: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-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004", - "name": "app000004", "type": "Microsoft.App/containerApps", "location": "North - Europe", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType": - "User", "createdAt": "2022-06-16T23:51:56.4359694", "lastModifiedBy": "silasstrawn@microsoft.com", - "lastModifiedByType": "User", "lastModifiedAt": "2022-06-16T23:52:35.0848142"}, - "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", - "outboundIpAddresses": ["20.223.35.227", "20.223.37.134", "20.223.38.5"], "latestRevisionName": - "app000004--qggcsjb", "latestRevisionFqdn": "app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io", - "customDomainVerificationId": "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7", - "configuration": {"secrets": [{"name": "acr000005azurecrio-acr000005", "value": - "Um62toiPubWGt7W4Uk44KvIAllr+HHNV"}], "activeRevisionsMode": "Single", "ingress": - {"fqdn": "app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io", "external": - true, "targetPort": 80, "transport": "Auto", "traffic": [{"weight": 100, "latestRevision": - true}], "allowInsecure": false}, "registries": [{"server": "acr000005.azurecr.io", - "username": null, "passwordSecretRef": null, "identity": "system"}]}, "template": - {"containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", - "name": "app000004", "resources": {"cpu": 0.5, "memory": "1Gi"}}], "scale": - {"minReplicas": 1, "maxReplicas": 10}}}, "identity": {"type": "SystemAssigned"}}' + body: null headers: Accept: - '*/*' @@ -2593,33 +3108,27 @@ interactions: - containerapp registry set Connection: - keep-alive - Content-Length: - - '1760' - Content-Type: - - application/json ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 - method: PUT + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:53:01.8991515Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","identity":"system"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"5136d227-a02a-499a-887a-58f49befae0f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:53:59.9627375"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"acr000005","passwordSecretRef":"acr000005azurecrio-acr000005","identity":""}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"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/35b5b166-7c04-4c41-82cf-c7224c31d373?api-version=2022-03-01&azureAsyncOperation=true + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1694' + - '1686' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:53:05 GMT + - Mon, 15 Aug 2022 22:54:29 GMT expires: - '-1' pragma: @@ -2628,17 +3137,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: @@ -2650,27 +3159,28 @@ interactions: - containerapp registry set Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - --server -g -n --identity 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/app000004?api-version=2022-03-01 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004/listSecrets?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:53:01.8991515"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","identity":"system"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"5136d227-a02a-499a-887a-58f49befae0f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"value":[{"name":"acr000005azurecrio-acr000005","value":"ocRHyEf=4W9NyRgfmEsZA0koVhgzbIpL"}]}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1693' + - '94' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:53:07 GMT + - Mon, 15 Aug 2022 22:54:30 GMT expires: - '-1' pragma: @@ -2685,13 +3195,33 @@ interactions: - 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 + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004", + "name": "app000004", "type": "Microsoft.App/containerApps", "location": "North + Europe", "systemData": {"createdBy": "silasstrawn@microsoft.com", "createdByType": + "User", "createdAt": "2022-08-15T22:52:47.0625187", "lastModifiedBy": "silasstrawn@microsoft.com", + "lastModifiedByType": "User", "lastModifiedAt": "2022-08-15T22:53:59.9627375"}, + "properties": {"provisioningState": "Succeeded", "managedEnvironmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "outboundIpAddresses": ["20.105.67.203", "20.105.67.185", "20.105.68.59"], "latestRevisionName": + "app000004--mpuqg8n", "latestRevisionFqdn": "app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io", + "customDomainVerificationId": "333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7", + "configuration": {"secrets": [{"name": "acr000005azurecrio-acr000005", "value": + "ocRHyEf=4W9NyRgfmEsZA0koVhgzbIpL"}], "activeRevisionsMode": "Single", "ingress": + {"fqdn": "app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io", "external": + true, "targetPort": 80, "transport": "Auto", "traffic": [{"weight": 100, "latestRevision": + true}], "allowInsecure": false}, "registries": [{"server": "acr000005.azurecr.io", + "username": null, "passwordSecretRef": null, "identity": "system"}]}, "template": + {"revisionSuffix": "", "containers": [{"image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest", + "name": "app000004", "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage": + ""}}], "scale": {"minReplicas": 1, "maxReplicas": 10}}}, "identity": {"type": + "SystemAssigned"}}' headers: Accept: - '*/*' @@ -2701,27 +3231,33 @@ interactions: - containerapp registry set Connection: - keep-alive + Content-Length: + - '1803' + Content-Type: + - application/json ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 - method: GET + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:53:01.8991515"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","identity":"system"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"5136d227-a02a-499a-887a-58f49befae0f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:54:32.5288655Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"","passwordSecretRef":"","identity":"system"}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2c851914-408b-4d11-899b-40c728677141","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/northeurope/containerappOperationStatuses/fa3ceeee-93b0-467a-a1e7-fd97f242cfeb?api-version=2022-03-01&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1693' + - '1770' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:53:12 GMT + - Mon, 15 Aug 2022 22:54:36 GMT expires: - '-1' pragma: @@ -2730,17 +3266,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: @@ -2755,24 +3291,24 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:53:01.8991515"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","identity":"system"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"5136d227-a02a-499a-887a-58f49befae0f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:54:32.5288655"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"","passwordSecretRef":"","identity":"system"}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2c851914-408b-4d11-899b-40c728677141","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1693' + - '1769' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:53:16 GMT + - Mon, 15 Aug 2022 22:54:39 GMT expires: - '-1' pragma: @@ -2806,24 +3342,24 @@ interactions: ParameterSetName: - --server -g -n --identity User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:53:01.8991515"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","identity":"system"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"5136d227-a02a-499a-887a-58f49befae0f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:54:32.5288655"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"","passwordSecretRef":"","identity":"system"}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2c851914-408b-4d11-899b-40c728677141","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1692' + - '1768' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:53:19 GMT + - Mon, 15 Aug 2022 22:54:43 GMT expires: - '-1' pragma: @@ -2857,49 +3393,71 @@ 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.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.13 (macOS-12.5-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, + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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 + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","North Central US","South Central US","Korea + Central","Brazil South","Central US EUAP","East US 2 EUAP","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","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","Brazil South","West US 3","France + Central","South Africa North","Norway East"],"apiVersions":["2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '3551' + - '5927' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:53:19 GMT + - Mon, 15 Aug 2022 22:54:44 GMT expires: - '-1' pragma: @@ -2927,24 +3485,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.6 (macOS-10.16-x86_64-i386-64bit) AZURECLI/2.37.0 + - python/3.8.13 (macOS-12.5-x86_64-i386-64bit) AZURECLI/2.39.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004?api-version=2022-03-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North - Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-06-16T23:51:56.4359694","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-06-16T23:53:01.8991515"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.223.35.227","20.223.37.134","20.223.38.5"],"latestRevisionName":"app000004--qggcsjb","latestRevisionFqdn":"app000004--qggcsjb.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.graysmoke-0eb19cf5.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","identity":"system"}]},"template":{"containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi"}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"5136d227-a02a-499a-887a-58f49befae0f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/app000004","name":"app000004","type":"Microsoft.App/containerApps","location":"North + Europe","systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2022-08-15T22:52:47.0625187","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-15T22:54:32.5288655"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","outboundIpAddresses":["20.105.67.203","20.105.67.185","20.105.68.59"],"latestRevisionName":"app000004--mpuqg8n","latestRevisionFqdn":"app000004--mpuqg8n.icytree-bb4794f1.northeurope.azurecontainerapps.io","customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","configuration":{"secrets":[{"name":"acr000005azurecrio-acr000005"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"app000004.icytree-bb4794f1.northeurope.azurecontainerapps.io","external":true,"targetPort":80,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"allowInsecure":false},"registries":[{"server":"acr000005.azurecr.io","username":"","passwordSecretRef":"","identity":"system"}]},"template":{"revisionSuffix":"","containers":[{"image":"mcr.microsoft.com/azuredocs/containerapps-helloworld:latest","name":"app000004","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":""}}],"scale":{"minReplicas":1,"maxReplicas":10}}},"identity":{"type":"SystemAssigned","principalId":"2c851914-408b-4d11-899b-40c728677141","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' headers: api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-05-01 + - 2022-01-01-preview, 2022-03-01, 2022-05-01, 2022-06-01-preview cache-control: - no-cache content-length: - - '1692' + - '1768' content-type: - application/json; charset=utf-8 date: - - Thu, 16 Jun 2022 23:53:24 GMT + - Mon, 15 Aug 2022 22:54:47 GMT expires: - '-1' pragma: diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py index 2bac10073b3..664f7e50ec9 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py @@ -559,3 +559,58 @@ 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) + + +class ContainerappRegistryIdentityTests(ScenarioTest): + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="westeurope") + @live_only() # encounters 'CannotOverwriteExistingCassetteException' only when run from recording (passes when run live) + def test_containerapp_registry_identity_user(self, resource_group): + import requests + + env = self.create_random_name(prefix='env', length=24) + app = self.create_random_name(prefix='aca', length=24) + identity = self.create_random_name(prefix='id', length=24) + acr = self.create_random_name(prefix='acr', length=24) + image_source = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest" + image_name = f"{acr}.azurecr.io/azuredocs/containerapps-helloworld:latest" + + self.cmd(f'containerapp env create -g {resource_group} -n {env}') + + identity_rid = self.cmd(f'identity create -g {resource_group} -n {identity}').get_output_in_json()["id"] + + self.cmd(f'acr create --sku basic -n {acr} -g {resource_group} --admin-enabled') + self.cmd(f'acr import -n {acr} --source {image_source}') + + self.cmd(f'containerapp create -g {resource_group} -n {app} --registry-identity {identity_rid} --image {image_name} --ingress external --target-port 80 --environment {env}') + + url = self.cmd(f'containerapp show -g {resource_group} -n {app}').get_output_in_json()["properties"]["configuration"]["ingress"]["fqdn"] + url = f"https://{url}" + resp = requests.get(url) + self.assertTrue(resp.ok) + self.assertEqual(resp.status_code, 200) + + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="westeurope") + @live_only() # encounters 'CannotOverwriteExistingCassetteException' only when run from recording (passes when run live) + def test_containerapp_registry_identity_system(self, resource_group): + import requests + + env = self.create_random_name(prefix='env', length=24) + app = self.create_random_name(prefix='aca', length=24) + acr = self.create_random_name(prefix='acr', length=24) + image_source = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest" + image_name = f"{acr}.azurecr.io/azuredocs/containerapps-helloworld:latest" + + self.cmd(f'containerapp env create -g {resource_group} -n {env}') + + self.cmd(f'acr create --sku basic -n {acr} -g {resource_group} --admin-enabled') + self.cmd(f'acr import -n {acr} --source {image_source}') + + self.cmd(f'containerapp create -g {resource_group} -n {app} --registry-identity "system" --image {image_name} --ingress external --target-port 80 --environment {env}') + + url = self.cmd(f'containerapp show -g {resource_group} -n {app}').get_output_in_json()["properties"]["configuration"]["ingress"]["fqdn"] + url = f"https://{url}" + resp = requests.get(url) + self.assertTrue(resp.ok) + self.assertEqual(resp.status_code, 200) diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_env_commands.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_env_commands.py index 5fafa7ebc93..e6f8914c65e 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_env_commands.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_env_commands.py @@ -158,21 +158,8 @@ def test_containerapp_env_certificate_e2e(self, resource_group): JMESPathCheck('length(@)', 0), ]) - # test pem file without password - pem_file = os.path.join(TEST_DIR, 'cert.pem') - cert_2 = self.cmd('containerapp env certificate upload -g {} -n {} --certificate-file "{}"'.format(resource_group, env_name, pem_file), checks=[ - JMESPathCheck('type', "Microsoft.App/managedEnvironments/certificates"), - ]).get_output_in_json() - cert_name_2 = cert_2["name"] - cert_id_2 = cert_2["id"] - cert_thumbprint_2 = cert_2["properties"]["thumbprint"] - # list certs with a wrong location - self.cmd('containerapp env certificate upload -g {} -n {} --certificate-file "{}" -l "{}"'.format(resource_group, env_name, pem_file, "eastus2"), expect_failure=True) - - self.cmd('containerapp env certificate list -n {} -g {}'.format(env_name, resource_group), checks=[ - JMESPathCheck('length(@)', 2), - ]) + self.cmd('containerapp env certificate upload -g {} -n {} --certificate-file "{}" -l "{}"'.format(resource_group, env_name, pfx_file, "eastus2"), expect_failure=True) self.cmd('containerapp env certificate list -n {} -g {} --certificate {}'.format(env_name, resource_group, cert_name), checks=[ JMESPathCheck('length(@)', 1), @@ -197,15 +184,6 @@ def test_containerapp_env_certificate_e2e(self, resource_group): self.cmd('containerapp env certificate delete -n {} -g {} --thumbprint {} -l {} --yes'.format(env_name, resource_group, cert_thumbprint, cert_location)) - self.cmd('containerapp env certificate list -n {} -g {} --certificate {}'.format(env_name, resource_group, cert_id_2), checks=[ - JMESPathCheck('length(@)', 1), - JMESPathCheck('[0].name', cert_name_2), - JMESPathCheck('[0].id', cert_id_2), - JMESPathCheck('[0].properties.thumbprint', cert_thumbprint_2), - ]) - - self.cmd('containerapp env certificate delete -n {} -g {} --certificate {} --yes'.format(env_name, resource_group, cert_name_2)) - self.cmd('containerapp env certificate list -g {} -n {}'.format(resource_group, env_name), checks=[ JMESPathCheck('length(@)', 0), ]) diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py index 9502add2532..14a85582546 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_scenario.py @@ -443,11 +443,11 @@ def test_containerapp_registry_msi(self, resource_group): self.assertEqual(app_data["properties"]["configuration"]["registries"][0].get("server"), f'{acr}.azurecr.io') self.assertIsNotNone(app_data["properties"]["configuration"]["registries"][0].get("passwordSecretRef")) self.assertIsNotNone(app_data["properties"]["configuration"]["registries"][0].get("username")) - self.assertIsNone(app_data["properties"]["configuration"]["registries"][0].get("identity")) + self.assertEqual(app_data["properties"]["configuration"]["registries"][0].get("identity"), "") self.cmd(f'containerapp registry set --server {acr}.azurecr.io -g {resource_group} -n {app} --identity system') app_data = self.cmd(f'containerapp show -g {resource_group} -n {app}').get_output_in_json() self.assertEqual(app_data["properties"]["configuration"]["registries"][0].get("server"), f'{acr}.azurecr.io') - self.assertIsNone(app_data["properties"]["configuration"]["registries"][0].get("passwordSecretRef")) - self.assertIsNone(app_data["properties"]["configuration"]["registries"][0].get("username")) + self.assertEqual(app_data["properties"]["configuration"]["registries"][0].get("passwordSecretRef"), "") + self.assertEqual(app_data["properties"]["configuration"]["registries"][0].get("username"), "") self.assertEqual(app_data["properties"]["configuration"]["registries"][0].get("identity"), "system") diff --git a/src/containerapp/setup.py b/src/containerapp/setup.py index 2d937c3f721..0b69e5af291 100644 --- a/src/containerapp/setup.py +++ b/src/containerapp/setup.py @@ -17,8 +17,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.3.8' - +VERSION = '0.3.9' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers